Trevor Moore and Adrian Cires

The general goal of this project is to explore the strength of different economic indicators as predictors for the general performance of the stock market. To do this, we analyzed a handful of economic indicators as input features to a handful of index funds which we use as a proxy for the performance of the stock market.

Data Collection

We will be using a number of common data science libraries to do processing throughout this tutorial.

In [1039]:
# Libraries for entire tutorial
import requests
from bs4 import BeautifulSoup
import pandas as pd
import os
import matplotlib.pyplot as plt
import numpy as np
from scipy.ndimage import gaussian_filter1d
from sklearn.linear_model import LinearRegression
from sklearn.metrics import r2_score, mean_squared_error

-Blurb about read_csv-

Here we read in the economic indicators we use to predict index fund performance.

  • ffer is the Effective Federal Funds Rate
  • iorb is the Interest Paid on Reserve Balances by banking institutions
  • usdi is the index for the US Dollar on the FX market
  • infr is the inflation rate in the US
  • ffru is the upper bound on fed's target fund rate
  • ffrl is the lower bound on the fed's target fund rate
  • ycur is the yield curve for 10-year vs 3-month treasury bills
In [1040]:
# Storing the data frames of each indicator in a dictionary for easy access
indicators = {}

# read_csv will read a given csv file, ensure to properly specify the path to the csv file in your system
indicators['ffer'] = pd.read_csv('DFF.csv', parse_dates=['DATE'])
indicators['iorb'] = pd.read_csv('IORB.csv', parse_dates=['DATE'])
indicators['usdi'] = pd.read_csv('DTWEXBGS.csv', parse_dates=['DATE'])
indicators['infr'] = pd.read_csv('T30YIEM.csv', parse_dates=['DATE'])
indicators['ffru'] = pd.read_csv('DFEDTARU.csv', parse_dates=['DATE'])
indicators['ffrl'] = pd.read_csv('DFEDTARL.csv', parse_dates=['DATE'])
indicators['ycur'] = pd.read_csv('T10Y3M.csv', parse_dates=['DATE'])

Index funds are pooled investments represent the performance of the (hundreds of) companies contained within the fund.

In [1041]:
# Defining the keys for the index funds and for accessing the online data fro alphadvantage
index_funds = ['SPY', 'QQQ', 'VOO', 'IVV', 'VTI']
index_dfs = {}
# ALPHA_VANTAGE_API_KEY = os.getenv('ALPHA_VANTAGE_API_KEY')
ALPHA_VANTAGE_API_KEY = 'AEFXVVJSCOY2X86E'

# Collecting the time and price data for each index fund and storing in a dictionary for easy access
for fund in index_funds:
    alpha_vantage_url = f'https://www.alphavantage.co/query?function=TIME_SERIES_DAILY&symbol={fund}&apikey={ALPHA_VANTAGE_API_KEY}&outputsize=full'
    
    # requests.get() will grab HTML, json, XML, or other website type data from the given url
    r = requests.get(alpha_vantage_url)
    
    # need to run .json() to parse the json information from the alhpadvantage site
    data = r.json()
    
    # Extracting the data from the dictionary provided by .json()
    df = pd.DataFrame.from_dict(data['Time Series (Daily)'], orient='index')
    
    # Setting the value for the specified key as the data frame extracted
    index_dfs[fund] = df
    
    print(fund)
    print(df)
SPY
             1. open   2. high    3. low  4. close 5. volume
2024-05-17  528.8100  529.5200  527.3200  529.4500  59187585
2024-05-16  529.8800  531.5218  528.5400  528.6900  50244827
2024-05-15  525.8300  530.0800  525.1800  529.7800  59504897
2024-05-14  521.1100  523.8300  520.5600  523.3000  57535867
2024-05-13  522.5600  522.6700  519.7400  520.9100  36716361
...              ...       ...       ...       ...       ...
1999-11-05  138.6250  139.1093  136.7812  137.8750   7431500
1999-11-04  136.7500  137.3593  135.7656  136.5312   7907500
1999-11-03  136.0000  136.3750  135.1250  135.5000   7222300
1999-11-02  135.9687  137.2500  134.5937  134.5937   6516900
1999-11-01  136.5000  137.0000  135.5625  135.5625   4006500

[6176 rows x 5 columns]
QQQ
             1. open   2. high    3. low  4. close 5. volume
2024-05-17  452.1100  452.7200  449.5399  451.7600  35803719
2024-05-16  452.7100  454.6900  451.8100  451.9800  34780412
2024-05-15  448.4300  453.1500  446.9000  452.9000  41464651
2024-05-14  442.6500  446.4650  442.4600  445.9300  34478321
2024-05-13  443.9900  444.0900  441.6500  443.0800  22994192
...              ...       ...       ...       ...       ...
1999-11-05  137.8000  138.4000  136.4000  136.4000   7567300
1999-11-04  135.4000  135.6000  133.6000  135.0000  10024300
1999-11-03  132.8000  134.3000  132.4000  133.5000   9376300
1999-11-02  131.5000  133.1000  130.4000  130.9000   6417400
1999-11-01  131.5000  133.1000  130.6000  130.8000   4840900

[6176 rows x 5 columns]
VOO
             1. open   2. high    3. low  4. close 5. volume
2024-05-17  486.0900  486.7300  484.7000  486.6900   3274035
2024-05-16  487.0500  488.5700  485.8300  485.9700   3347381
2024-05-15  483.3400  487.2300  482.7350  486.9000   4399485
2024-05-14  478.9800  481.4700  478.4800  481.0400   3257724
2024-05-13  480.3500  480.4200  477.7300  478.7700   3108442
...              ...       ...       ...       ...       ...
2010-09-15   51.3100   51.6900   51.2000   51.6500     18400
2010-09-14   51.4200   51.7400   51.1900   51.5190    118800
2010-09-13   51.4800   51.5700   51.2500   51.5300     67400
2010-09-10   50.8400   50.9300   50.6480   50.8900     17200
2010-09-09   51.2500   51.2500   50.5700   50.6600     53000

[3446 rows x 5 columns]
IVV
             1. open   2. high    3. low  4. close 5. volume
2024-05-17  531.4500  532.1700  529.9450  532.1300   4234595
2024-05-16  532.5300  534.1800  531.1700  531.2300   5526537
2024-05-15  528.5100  532.7400  527.8245  532.4800   3568824
2024-05-14  523.7000  526.4250  523.1700  525.9600   3288312
2024-05-13  525.2000  525.2700  522.3800  523.5700   2566804
...              ...       ...       ...       ...       ...
2000-05-25  140.0000  140.9000  137.9000  138.5000     69600
2000-05-24  137.8000  140.1000  136.7000  139.8000    400300
2000-05-23  140.2000  140.2000  137.7000  137.7000    373900
2000-05-22  140.6000  140.6000  136.8000  139.8000   1850600
2000-05-19  142.7000  142.7000  140.3000  140.7000    775500

[6037 rows x 5 columns]
VTI
             1. open   2. high    3. low  4. close 5. volume
2024-05-17  262.1500  262.3000  261.2400  262.3000   2208726
2024-05-16  262.6800  263.2800  261.8600  261.9300   2444983
2024-05-15  260.8500  262.7300  260.4428  262.6400   2508701
2024-05-14  258.2300  259.6700  258.0830  259.4500   2466842
2024-05-13  259.0800  259.0800  257.5600  258.1900   1948407
...              ...       ...       ...       ...       ...
2001-06-06  117.5000  117.8000  116.7000  116.8000    278500
2001-06-05  116.4000  118.0000  116.4000  117.8000    562400
2001-06-04  116.1000  116.2000  115.3000  116.1000   1018200
2001-06-01  115.1000  115.9000  114.4000  115.6000   2542200
2001-05-31  114.5000  115.5000  114.5000  114.8000   2457200

[5778 rows x 5 columns]

Data Processing

Start processing of indicators

Looking at data columns we realized they used the file name for the column and we need to change it

In [1042]:
indicators['ffer'].head()
Out[1042]:
DATE DFF
0 1954-07-01 1.13
1 1954-07-02 1.25
2 1954-07-03 1.25
3 1954-07-04 1.25
4 1954-07-05 0.88

We changed column names to be what they represent

In [1043]:
# Renaming the column headers to be easy to read and understand
indicators['ffer'] = indicators['ffer'].rename(columns={'DATE': 'Date', 'DFF': 'Daily Federal Funds Rate'})
indicators['iorb'] = indicators['iorb'].rename(columns={'DATE': 'Date', 'IORB': 'Interest Rate on Reserve Balances'})
indicators['usdi'] = indicators['usdi'].rename(columns={'DATE': 'Date', 'DTWEXBGS': 'Nominal Broad US Dollar Index'})
indicators['infr'] = indicators['infr'].rename(columns={'DATE': 'Date', 'T30YIEM': 'Inflation Rate'})
indicators['ffru'] = indicators['ffru'].rename(columns={'DATE': 'Date', 'DFEDTARU': 'Federal Funds Target Upper Limit'})
indicators['ffrl'] = indicators['ffrl'].rename(columns={'DATE': 'Date', 'DFEDTARL': 'Federal Funds Target Lower Limit'})
indicators['ycur'] = indicators['ycur'].rename(columns={'DATE': 'Date', 'T10Y3M': 'Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity'})

for df in indicators.values():
    print(df)
            Date  Daily Federal Funds Rate
0     1954-07-01                      1.13
1     1954-07-02                      1.25
2     1954-07-03                      1.25
3     1954-07-04                      1.25
4     1954-07-05                      0.88
...          ...                       ...
25515 2024-05-09                      5.33
25516 2024-05-10                      5.33
25517 2024-05-11                      5.33
25518 2024-05-12                      5.33
25519 2024-05-13                      5.33

[25520 rows x 2 columns]
           Date  Interest Rate on Reserve Balances
0    2021-07-29                               0.15
1    2021-07-30                               0.15
2    2021-07-31                               0.15
3    2021-08-01                               0.15
4    2021-08-02                               0.15
...         ...                                ...
1017 2024-05-11                               5.40
1018 2024-05-12                               5.40
1019 2024-05-13                               5.40
1020 2024-05-14                               5.40
1021 2024-05-15                               5.40

[1022 rows x 2 columns]
           Date Nominal Broad US Dollar Index
0    2006-01-02                      101.4155
1    2006-01-03                      100.7558
2    2006-01-04                      100.2288
3    2006-01-05                      100.2992
4    2006-01-06                      100.0241
...         ...                           ...
4785 2024-05-06                      122.2529
4786 2024-05-07                      122.4588
4787 2024-05-08                      122.5562
4788 2024-05-09                      122.5322
4789 2024-05-10                      122.3898

[4790 rows x 2 columns]
          Date  Inflation Rate
0   2010-02-01            2.46
1   2010-03-01            2.49
2   2010-04-01            2.64
3   2010-05-01            2.46
4   2010-06-01            2.36
..         ...             ...
166 2023-12-01            2.19
167 2024-01-01            2.24
168 2024-02-01            2.26
169 2024-03-01            2.27
170 2024-04-01            2.35

[171 rows x 2 columns]
           Date  Federal Funds Target Upper Limit
0    2008-12-16                              0.25
1    2008-12-17                              0.25
2    2008-12-18                              0.25
3    2008-12-19                              0.25
4    2008-12-20                              0.25
...         ...                               ...
5625 2024-05-11                              5.50
5626 2024-05-12                              5.50
5627 2024-05-13                              5.50
5628 2024-05-14                              5.50
5629 2024-05-15                              5.50

[5630 rows x 2 columns]
           Date  Federal Funds Target Lower Limit
0    2008-12-16                              0.00
1    2008-12-17                              0.00
2    2008-12-18                              0.00
3    2008-12-19                              0.00
4    2008-12-20                              0.00
...         ...                               ...
5625 2024-05-11                              5.25
5626 2024-05-12                              5.25
5627 2024-05-13                              5.25
5628 2024-05-14                              5.25
5629 2024-05-15                              5.25

[5630 rows x 2 columns]
            Date  \
0     1982-01-04   
1     1982-01-05   
2     1982-01-06   
3     1982-01-07   
4     1982-01-08   
...          ...   
11048 2024-05-09   
11049 2024-05-10   
11050 2024-05-13   
11051 2024-05-14   
11052 2024-05-15   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                   2.32                   
1                                                   2.24                   
2                                                   2.43                   
3                                                   2.46                   
4                                                   2.50                   
...                                                  ...                   
11048                                              -1.01                   
11049                                              -0.97                   
11050                                              -0.97                   
11051                                              -0.99                   
11052                                              -1.09                   

[11053 rows x 2 columns]

To simplify how we are processing data it is usually best to combine related data frames into a single data frame. For our case we will be combining all the indicator data frames into a single master dataframe.

In [1044]:
# Converting str Dates to datetime type
for indicator_tag in indicators:
    indicators[indicator_tag]['Date'] = pd.to_datetime(indicators[indicator_tag]['Date'])

Make sure all data is a number, so convert non-numbers to NaN

In [1045]:
# Converting non numeric values to be numeric or NaN otherwise
for indicator_tag in indicators:
    # Getting all the data columns (Dont want to conver the Date column to a number)
    cols_to_convert = indicators[indicator_tag].columns.drop('Date')
    
    # Setting all the data columns to have numeric values to get rid of strings
    indicators[indicator_tag][cols_to_convert] = indicators[indicator_tag][cols_to_convert].apply(pd.to_numeric, errors='coerce')

Interpolate to remove NaN, these can't be used for processing.

In [1046]:
for df in indicators.values():
    print(df)

# Filling in NaN values by interpolating between the closest previous and next cell with a float value
for indicator_tag in indicators:
    indicators[indicator_tag] = indicators[indicator_tag].interpolate(method='linear', limit_direction='forward', axis=0)
    
for df in indicators.values():
    print(df)
            Date  Daily Federal Funds Rate
0     1954-07-01                      1.13
1     1954-07-02                      1.25
2     1954-07-03                      1.25
3     1954-07-04                      1.25
4     1954-07-05                      0.88
...          ...                       ...
25515 2024-05-09                      5.33
25516 2024-05-10                      5.33
25517 2024-05-11                      5.33
25518 2024-05-12                      5.33
25519 2024-05-13                      5.33

[25520 rows x 2 columns]
           Date  Interest Rate on Reserve Balances
0    2021-07-29                               0.15
1    2021-07-30                               0.15
2    2021-07-31                               0.15
3    2021-08-01                               0.15
4    2021-08-02                               0.15
...         ...                                ...
1017 2024-05-11                               5.40
1018 2024-05-12                               5.40
1019 2024-05-13                               5.40
1020 2024-05-14                               5.40
1021 2024-05-15                               5.40

[1022 rows x 2 columns]
           Date  Nominal Broad US Dollar Index
0    2006-01-02                       101.4155
1    2006-01-03                       100.7558
2    2006-01-04                       100.2288
3    2006-01-05                       100.2992
4    2006-01-06                       100.0241
...         ...                            ...
4785 2024-05-06                       122.2529
4786 2024-05-07                       122.4588
4787 2024-05-08                       122.5562
4788 2024-05-09                       122.5322
4789 2024-05-10                       122.3898

[4790 rows x 2 columns]
          Date  Inflation Rate
0   2010-02-01            2.46
1   2010-03-01            2.49
2   2010-04-01            2.64
3   2010-05-01            2.46
4   2010-06-01            2.36
..         ...             ...
166 2023-12-01            2.19
167 2024-01-01            2.24
168 2024-02-01            2.26
169 2024-03-01            2.27
170 2024-04-01            2.35

[171 rows x 2 columns]
           Date  Federal Funds Target Upper Limit
0    2008-12-16                              0.25
1    2008-12-17                              0.25
2    2008-12-18                              0.25
3    2008-12-19                              0.25
4    2008-12-20                              0.25
...         ...                               ...
5625 2024-05-11                              5.50
5626 2024-05-12                              5.50
5627 2024-05-13                              5.50
5628 2024-05-14                              5.50
5629 2024-05-15                              5.50

[5630 rows x 2 columns]
           Date  Federal Funds Target Lower Limit
0    2008-12-16                              0.00
1    2008-12-17                              0.00
2    2008-12-18                              0.00
3    2008-12-19                              0.00
4    2008-12-20                              0.00
...         ...                               ...
5625 2024-05-11                              5.25
5626 2024-05-12                              5.25
5627 2024-05-13                              5.25
5628 2024-05-14                              5.25
5629 2024-05-15                              5.25

[5630 rows x 2 columns]
            Date  \
0     1982-01-04   
1     1982-01-05   
2     1982-01-06   
3     1982-01-07   
4     1982-01-08   
...          ...   
11048 2024-05-09   
11049 2024-05-10   
11050 2024-05-13   
11051 2024-05-14   
11052 2024-05-15   

       Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                   2.32                    
1                                                   2.24                    
2                                                   2.43                    
3                                                   2.46                    
4                                                   2.50                    
...                                                  ...                    
11048                                              -1.01                    
11049                                              -0.97                    
11050                                              -0.97                    
11051                                              -0.99                    
11052                                              -1.09                    

[11053 rows x 2 columns]
            Date  Daily Federal Funds Rate
0     1954-07-01                      1.13
1     1954-07-02                      1.25
2     1954-07-03                      1.25
3     1954-07-04                      1.25
4     1954-07-05                      0.88
...          ...                       ...
25515 2024-05-09                      5.33
25516 2024-05-10                      5.33
25517 2024-05-11                      5.33
25518 2024-05-12                      5.33
25519 2024-05-13                      5.33

[25520 rows x 2 columns]
           Date  Interest Rate on Reserve Balances
0    2021-07-29                               0.15
1    2021-07-30                               0.15
2    2021-07-31                               0.15
3    2021-08-01                               0.15
4    2021-08-02                               0.15
...         ...                                ...
1017 2024-05-11                               5.40
1018 2024-05-12                               5.40
1019 2024-05-13                               5.40
1020 2024-05-14                               5.40
1021 2024-05-15                               5.40

[1022 rows x 2 columns]
           Date  Nominal Broad US Dollar Index
0    2006-01-02                       101.4155
1    2006-01-03                       100.7558
2    2006-01-04                       100.2288
3    2006-01-05                       100.2992
4    2006-01-06                       100.0241
...         ...                            ...
4785 2024-05-06                       122.2529
4786 2024-05-07                       122.4588
4787 2024-05-08                       122.5562
4788 2024-05-09                       122.5322
4789 2024-05-10                       122.3898

[4790 rows x 2 columns]
          Date  Inflation Rate
0   2010-02-01            2.46
1   2010-03-01            2.49
2   2010-04-01            2.64
3   2010-05-01            2.46
4   2010-06-01            2.36
..         ...             ...
166 2023-12-01            2.19
167 2024-01-01            2.24
168 2024-02-01            2.26
169 2024-03-01            2.27
170 2024-04-01            2.35

[171 rows x 2 columns]
           Date  Federal Funds Target Upper Limit
0    2008-12-16                              0.25
1    2008-12-17                              0.25
2    2008-12-18                              0.25
3    2008-12-19                              0.25
4    2008-12-20                              0.25
...         ...                               ...
5625 2024-05-11                              5.50
5626 2024-05-12                              5.50
5627 2024-05-13                              5.50
5628 2024-05-14                              5.50
5629 2024-05-15                              5.50

[5630 rows x 2 columns]
           Date  Federal Funds Target Lower Limit
0    2008-12-16                              0.00
1    2008-12-17                              0.00
2    2008-12-18                              0.00
3    2008-12-19                              0.00
4    2008-12-20                              0.00
...         ...                               ...
5625 2024-05-11                              5.25
5626 2024-05-12                              5.25
5627 2024-05-13                              5.25
5628 2024-05-14                              5.25
5629 2024-05-15                              5.25

[5630 rows x 2 columns]
            Date  \
0     1982-01-04   
1     1982-01-05   
2     1982-01-06   
3     1982-01-07   
4     1982-01-08   
...          ...   
11048 2024-05-09   
11049 2024-05-10   
11050 2024-05-13   
11051 2024-05-14   
11052 2024-05-15   

       Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                   2.32                    
1                                                   2.24                    
2                                                   2.43                    
3                                                   2.46                    
4                                                   2.50                    
...                                                  ...                    
11048                                              -1.01                    
11049                                              -0.97                    
11050                                              -0.97                    
11051                                              -0.99                    
11052                                              -1.09                    

[11053 rows x 2 columns]

Since inflation is measured by the change in the price index over time, it is not possible to calculate an analytic construct for inflation. Instead, we interpolate based on nearest neighbor to keep inflation as constant as possible throughout periods where it is unavailable.

In [1047]:
# Filling in missing dates for the Inflation Rate in order to convert frequency from monthly to daily
date_range = []

# Creating a copy to avoid in place data manipulation issues
infr_copy = indicators['infr'].copy()
for date in infr_copy['Date']:
    # Using pandas to determine the end of the current month
    end_date = date + pd.offsets.MonthEnd(1)
    
    # Creating an array of dates to add
    date_range = date_range + (pd.date_range(start=date, end=end_date, freq='D').tolist())

# Creating a new data frame that contains all the new dates
all_dates = pd.DataFrame(date_range, columns=['Date'])
print(all_dates)
           Date
0    2010-02-01
1    2010-02-02
2    2010-02-03
3    2010-02-04
4    2010-02-05
...         ...
5198 2024-04-26
5199 2024-04-27
5200 2024-04-28
5201 2024-04-29
5202 2024-04-30

[5203 rows x 1 columns]
In [1048]:
# Merging the Inflation Rate data frame and Dates data frame to contain the existing Inflation data and all the
# needed dates
infr_copy = all_dates.merge(infr_copy, on='Date', how='left')
print(infr_copy)
           Date  Inflation Rate
0    2010-02-01            2.46
1    2010-02-02             NaN
2    2010-02-03             NaN
3    2010-02-04             NaN
4    2010-02-05             NaN
...         ...             ...
5198 2024-04-26             NaN
5199 2024-04-27             NaN
5200 2024-04-28             NaN
5201 2024-04-29             NaN
5202 2024-04-30             NaN

[5203 rows x 2 columns]
In [1049]:
infr_interpolated = infr_copy.copy()

# Interpolating to fill the added days with usable data, interpolated between the first of the current and next month
for index, row in infr_copy.iterrows():
    if not isinstance(row['Inflation Rate'], float):
        date = row['Date']
        
        # Finding the start of the current month
        start = date + pd.offsets.MonthBegin(-1)
        # Finding the end of the current month
        end = date + pd.offsets.MonthEnd(1)
        
        # Calculating the number of days between the current day and the first and last day of the month
        diff_start = (date - start).days
        diff_end = (end - date).days
        
        # Getting the inflation rate of the first day of the month
        infr_start = infr_copy['Inflation Rate'][index - diff_start]
        
        # Getting the inflation rate of the first day of the next month
        if index + diff_end + 1 < len(infr_copy['Date']):
            infr_end = infr_copy['Inflation Rate'][index + diff_end + 1]
        
        # Calculating the interpolated inflation value
        infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
        infr = row['Inflation Rate']
        
        print(f'Date: {date} {infr} Start: {start} {infr_start} End: {end} {infr_end}')
        
print(infr_interpolated)
indicators['infr'] = infr_interpolated
Date: 2010-02-02 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-03 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-04 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-05 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-06 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-07 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-08 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-09 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-10 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-11 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-12 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-13 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-14 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-15 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-16 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-17 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-18 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-19 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-20 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-21 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-22 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-23 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-24 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-25 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-26 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-27 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-02-28 00:00:00 2.49
Date: 2010-02-28 00:00:00 NaT Start: 2010-02-01 00:00:00 2.46 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-02 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-03 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-04 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-05 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-06 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-07 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-08 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-09 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-10 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-11 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-12 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-13 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-14 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-15 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-16 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-17 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-18 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-19 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-20 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-21 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-22 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-23 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-24 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-25 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-26 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-27 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-28 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-29 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-30 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-03-31 00:00:00 2.64
Date: 2010-03-31 00:00:00 NaT Start: 2010-03-01 00:00:00 2.49 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-02 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-03 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-04 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-05 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-06 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-07 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-08 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-09 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-10 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-11 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-12 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-13 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-14 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-15 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-16 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-17 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-18 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-19 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-20 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-21 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-22 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-23 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-24 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-25 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-26 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-27 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-28 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-29 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-04-30 00:00:00 2.46
Date: 2010-04-30 00:00:00 NaT Start: 2010-04-01 00:00:00 2.64 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-02 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-03 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-04 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-05 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-06 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-07 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-08 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-09 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-10 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-11 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-12 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-13 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-14 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-15 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-16 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-17 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-18 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-19 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-20 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-21 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-22 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-23 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-24 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-25 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-26 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-27 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-28 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-29 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-30 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-05-31 00:00:00 2.36
Date: 2010-05-31 00:00:00 NaT Start: 2010-05-01 00:00:00 2.46 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-02 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-03 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-04 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-05 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-06 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-07 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-08 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-09 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-10 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-11 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-12 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-13 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-14 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-15 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-16 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-17 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-18 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-19 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-20 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-21 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-22 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-23 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-24 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-25 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-26 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-27 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-28 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-29 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-06-30 00:00:00 2.12
Date: 2010-06-30 00:00:00 NaT Start: 2010-06-01 00:00:00 2.36 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-02 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-03 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-04 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-05 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-06 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-07 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-08 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-09 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-10 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-11 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-12 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-13 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-14 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-15 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-16 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-17 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-18 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-19 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-20 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-21 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-22 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-23 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-24 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-25 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-26 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-27 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-28 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-29 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-30 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-07-31 00:00:00 2.04
Date: 2010-07-31 00:00:00 NaT Start: 2010-07-01 00:00:00 2.12 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-02 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-03 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-04 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-05 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-06 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-07 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-08 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-09 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-10 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-11 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-12 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-13 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-14 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-15 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-16 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-17 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-18 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-19 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-20 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-21 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-22 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-23 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-24 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-25 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-26 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-27 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-28 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-29 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-30 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-08-31 00:00:00 2.11
Date: 2010-08-31 00:00:00 NaT Start: 2010-08-01 00:00:00 2.04 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-02 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-03 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-04 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-05 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-06 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-07 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-08 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-09 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-10 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-11 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-12 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-13 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-14 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-15 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-16 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-17 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-18 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-19 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-20 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-21 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-22 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-23 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-24 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-25 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-26 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-27 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-28 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-29 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-09-30 00:00:00 2.43
Date: 2010-09-30 00:00:00 NaT Start: 2010-09-01 00:00:00 2.11 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-02 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-03 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-04 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-05 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-06 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-07 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-08 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-09 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-10 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-11 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-12 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-13 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-14 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-15 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-16 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-17 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-18 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-19 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-20 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-21 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-22 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-23 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-24 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-25 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-26 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-27 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-28 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-29 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-30 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-10-31 00:00:00 2.58
Date: 2010-10-31 00:00:00 NaT Start: 2010-10-01 00:00:00 2.43 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-02 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-03 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-04 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-05 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-06 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-07 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-08 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-09 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-10 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-11 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-12 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-13 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-14 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-15 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-16 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-17 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-18 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-19 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-20 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-21 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-22 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-23 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-24 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-25 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-26 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-27 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-28 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-29 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-11-30 00:00:00 2.53
Date: 2010-11-30 00:00:00 NaT Start: 2010-11-01 00:00:00 2.58 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-02 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-03 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-04 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-05 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-06 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-07 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-08 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-09 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-10 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-11 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-12 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-13 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-14 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-15 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-16 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-17 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-18 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-19 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-20 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-21 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-22 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-23 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-24 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-25 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-26 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-27 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-28 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-29 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-30 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2010-12-31 00:00:00 2.55
Date: 2010-12-31 00:00:00 NaT Start: 2010-12-01 00:00:00 2.53 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-02 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-03 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-04 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-05 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-06 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-07 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-08 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-09 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-10 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-11 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-12 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-13 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-14 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-15 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-16 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-17 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-18 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-19 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-20 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-21 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-22 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-23 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-24 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-25 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-26 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-27 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-28 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-29 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-30 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-01-31 00:00:00 2.52
Date: 2011-01-31 00:00:00 NaT Start: 2011-01-01 00:00:00 2.55 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-02 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-03 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-04 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-05 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-06 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-07 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-08 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-09 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-10 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-11 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-12 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-13 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-14 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-15 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-16 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-17 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-18 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-19 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-20 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-21 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-22 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-23 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-24 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-25 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-26 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-27 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-02-28 00:00:00 2.62
Date: 2011-02-28 00:00:00 NaT Start: 2011-02-01 00:00:00 2.52 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-02 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-03 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-04 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-05 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-06 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-07 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-08 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-09 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-10 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-11 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-12 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-13 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-14 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-15 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-16 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-17 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-18 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-19 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-20 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-21 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-22 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-23 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-24 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-25 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-26 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-27 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-28 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-29 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-30 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-03-31 00:00:00 2.71
Date: 2011-03-31 00:00:00 NaT Start: 2011-03-01 00:00:00 2.62 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-02 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-03 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-04 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-05 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-06 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-07 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-08 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-09 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-10 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-11 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-12 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-13 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-14 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-15 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-16 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-17 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-18 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-19 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-20 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-21 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-22 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-23 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-24 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-25 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-26 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-27 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-28 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-29 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-04-30 00:00:00 2.52
Date: 2011-04-30 00:00:00 NaT Start: 2011-04-01 00:00:00 2.71 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-02 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-03 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-04 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-05 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-06 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-07 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-08 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-09 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-10 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-11 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-12 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-13 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-14 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-15 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-16 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-17 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-18 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-19 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-20 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-21 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-22 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-23 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-24 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-25 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-26 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-27 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-28 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-29 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-30 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-05-31 00:00:00 2.45
Date: 2011-05-31 00:00:00 NaT Start: 2011-05-01 00:00:00 2.52 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-02 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-03 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-04 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-05 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-06 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-07 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-08 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-09 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-10 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-11 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-12 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-13 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-14 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-15 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-16 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-17 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-18 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-19 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-20 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-21 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-22 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-23 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-24 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-25 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-26 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-27 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-28 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-29 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-06-30 00:00:00 2.65
Date: 2011-06-30 00:00:00 NaT Start: 2011-06-01 00:00:00 2.45 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-02 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-03 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-04 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-05 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-06 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-07 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-08 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-09 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-10 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-11 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-12 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-13 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-14 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-15 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-16 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-17 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-18 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-19 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-20 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-21 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-22 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-23 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-24 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-25 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-26 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-27 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-28 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-29 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-30 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-07-31 00:00:00 2.55
Date: 2011-07-31 00:00:00 NaT Start: 2011-07-01 00:00:00 2.65 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-02 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-03 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-04 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-05 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-06 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-07 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-08 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-09 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-10 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-11 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-12 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-13 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-14 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-15 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-16 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-17 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-18 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-19 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-20 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-21 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-22 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-23 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-24 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-25 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-26 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-27 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-28 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-29 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-30 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-08-31 00:00:00 2.16
Date: 2011-08-31 00:00:00 NaT Start: 2011-08-01 00:00:00 2.55 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-02 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-03 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-04 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-05 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-06 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-07 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-08 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-09 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-10 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-11 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-12 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-13 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-14 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-15 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-16 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-17 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-18 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-19 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-20 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-21 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-22 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-23 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-24 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-25 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-26 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-27 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-28 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-29 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-09-30 00:00:00 2.14
Date: 2011-09-30 00:00:00 NaT Start: 2011-09-01 00:00:00 2.16 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-02 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-03 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-04 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-05 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-06 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-07 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-08 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-09 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-10 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-11 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-12 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-13 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-14 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-15 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-16 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-17 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-18 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-19 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-20 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-21 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-22 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-23 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-24 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-25 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-26 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-27 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-28 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-29 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-30 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-10-31 00:00:00 2.24
Date: 2011-10-31 00:00:00 NaT Start: 2011-10-01 00:00:00 2.14 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-02 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-03 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-04 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-05 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-06 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-07 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-08 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-09 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-10 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-11 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-12 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-13 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-14 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-15 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-16 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-17 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-18 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-19 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-20 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-21 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-22 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-23 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-24 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-25 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-26 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-27 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-28 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-29 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-11-30 00:00:00 2.2
Date: 2011-11-30 00:00:00 NaT Start: 2011-11-01 00:00:00 2.24 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-02 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-03 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-04 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-05 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-06 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-07 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-08 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-09 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-10 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-11 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-12 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-13 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-14 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-15 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-16 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-17 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-18 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-19 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-20 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-21 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-22 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-23 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-24 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-25 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-26 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-27 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-28 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-29 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-30 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2011-12-31 00:00:00 2.29
Date: 2011-12-31 00:00:00 NaT Start: 2011-12-01 00:00:00 2.2 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-02 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-03 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-04 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-05 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-06 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-07 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-08 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-09 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-10 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-11 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-12 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-13 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-14 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-15 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-16 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-17 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-18 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-19 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-20 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-21 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-22 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-23 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-24 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-25 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-26 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-27 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-28 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-29 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-30 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-01-31 00:00:00 2.39
Date: 2012-01-31 00:00:00 NaT Start: 2012-01-01 00:00:00 2.29 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-02 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-03 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-04 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-05 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-06 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-07 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-08 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-09 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-10 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-11 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-12 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-13 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-14 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-15 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-16 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-17 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-18 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-19 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-20 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-21 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-22 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-23 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-24 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-25 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-26 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-27 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-28 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-02-29 00:00:00 2.41
Date: 2012-02-29 00:00:00 NaT Start: 2012-02-01 00:00:00 2.39 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-02 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-03 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-04 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-05 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-06 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-07 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-08 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-09 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-10 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-11 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-12 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-13 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-14 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-15 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-16 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-17 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-18 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-19 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-20 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-21 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-22 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-23 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-24 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-25 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-26 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-27 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-28 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-29 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-30 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-03-31 00:00:00 2.39
Date: 2012-03-31 00:00:00 NaT Start: 2012-03-01 00:00:00 2.41 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-02 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-03 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-04 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-05 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-06 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-07 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-08 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-09 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-10 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-11 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-12 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-13 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-14 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-15 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-16 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-17 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-18 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-19 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-20 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-21 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-22 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-23 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-24 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-25 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-26 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-27 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-28 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-29 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-04-30 00:00:00 2.25
Date: 2012-04-30 00:00:00 NaT Start: 2012-04-01 00:00:00 2.39 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-02 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-03 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-04 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-05 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-06 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-07 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-08 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-09 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-10 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-11 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-12 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-13 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-14 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-15 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-16 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-17 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-18 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-19 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-20 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-21 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-22 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-23 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-24 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-25 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-26 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-27 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-28 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-29 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-30 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-05-31 00:00:00 2.2
Date: 2012-05-31 00:00:00 NaT Start: 2012-05-01 00:00:00 2.25 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-02 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-03 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-04 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-05 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-06 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-07 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-08 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-09 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-10 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-11 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-12 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-13 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-14 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-15 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-16 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-17 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-18 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-19 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-20 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-21 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-22 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-23 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-24 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-25 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-26 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-27 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-28 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-29 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-06-30 00:00:00 2.2
Date: 2012-06-30 00:00:00 NaT Start: 2012-06-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-02 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-03 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-04 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-05 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-06 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-07 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-08 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-09 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-10 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-11 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-12 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-13 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-14 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-15 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-16 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-17 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-18 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-19 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-20 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-21 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-22 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-23 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-24 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-25 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-26 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-27 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-28 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-29 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-30 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-07-31 00:00:00 2.3
Date: 2012-07-31 00:00:00 NaT Start: 2012-07-01 00:00:00 2.2 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-02 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-03 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-04 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-05 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-06 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-07 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-08 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-09 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-10 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-11 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-12 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-13 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-14 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-15 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-16 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-17 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-18 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-19 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-20 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-21 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-22 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-23 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-24 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-25 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-26 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-27 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-28 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-29 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-30 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-08-31 00:00:00 2.44
Date: 2012-08-31 00:00:00 NaT Start: 2012-08-01 00:00:00 2.3 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-02 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-03 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-04 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-05 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-06 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-07 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-08 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-09 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-10 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-11 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-12 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-13 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-14 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-15 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-16 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-17 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-18 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-19 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-20 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-21 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-22 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-23 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-24 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-25 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-26 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-27 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-28 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-29 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-09-30 00:00:00 2.49
Date: 2012-09-30 00:00:00 NaT Start: 2012-09-01 00:00:00 2.44 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-02 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-03 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-04 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-05 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-06 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-07 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-08 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-09 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-10 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-11 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-12 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-13 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-14 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-15 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-16 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-17 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-18 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-19 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-20 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-21 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-22 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-23 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-24 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-25 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-26 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-27 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-28 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-29 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-30 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-10-31 00:00:00 2.45
Date: 2012-10-31 00:00:00 NaT Start: 2012-10-01 00:00:00 2.49 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-02 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-03 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-04 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-05 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-06 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-07 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-08 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-09 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-10 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-11 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-12 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-13 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-14 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-15 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-16 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-17 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-18 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-19 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-20 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-21 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-22 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-23 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-24 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-25 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-26 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-27 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-28 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-29 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-11-30 00:00:00 2.55
Date: 2012-11-30 00:00:00 NaT Start: 2012-11-01 00:00:00 2.45 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-02 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-03 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-04 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-05 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-06 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-07 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-08 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-09 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-10 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-11 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-12 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-13 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-14 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-15 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-16 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-17 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-18 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-19 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-20 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-21 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-22 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-23 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-24 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-25 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-26 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-27 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-28 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-29 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-30 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2012-12-31 00:00:00 2.6
Date: 2012-12-31 00:00:00 NaT Start: 2012-12-01 00:00:00 2.55 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-02 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-03 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-04 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-05 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-06 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-07 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-08 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-09 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-10 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-11 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-12 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-13 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-14 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-15 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-16 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-17 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-18 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-19 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-20 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-21 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-22 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-23 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-24 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-25 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-26 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-27 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-28 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-29 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-30 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-01-31 00:00:00 2.6
Date: 2013-01-31 00:00:00 NaT Start: 2013-01-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-02 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-03 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-04 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-05 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-06 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-07 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-08 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-09 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-10 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-11 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-12 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-13 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-14 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-15 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-16 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-17 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-18 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-19 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-20 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-21 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-22 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-23 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-24 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-25 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-26 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-27 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-02-28 00:00:00 2.54
Date: 2013-02-28 00:00:00 NaT Start: 2013-02-01 00:00:00 2.6 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-02 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-03 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-04 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-05 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-06 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-07 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-08 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-09 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-10 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-11 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-12 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-13 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-14 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-15 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-16 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-17 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-18 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-19 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-20 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-21 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-22 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-23 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-24 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-25 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-26 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-27 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-28 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-29 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-30 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-03-31 00:00:00 2.45
Date: 2013-03-31 00:00:00 NaT Start: 2013-03-01 00:00:00 2.54 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-02 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-03 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-04 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-05 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-06 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-07 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-08 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-09 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-10 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-11 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-12 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-13 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-14 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-15 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-16 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-17 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-18 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-19 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-20 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-21 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-22 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-23 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-24 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-25 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-26 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-27 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-28 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-29 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-04-30 00:00:00 2.39
Date: 2013-04-30 00:00:00 NaT Start: 2013-04-01 00:00:00 2.45 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-02 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-03 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-04 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-05 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-06 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-07 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-08 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-09 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-10 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-11 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-12 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-13 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-14 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-15 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-16 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-17 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-18 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-19 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-20 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-21 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-22 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-23 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-24 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-25 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-26 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-27 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-28 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-29 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-30 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-05-31 00:00:00 2.19
Date: 2013-05-31 00:00:00 NaT Start: 2013-05-01 00:00:00 2.39 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-02 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-03 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-04 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-05 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-06 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-07 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-08 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-09 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-10 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-11 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-12 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-13 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-14 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-15 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-16 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-17 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-18 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-19 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-20 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-21 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-22 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-23 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-24 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-25 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-26 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-27 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-28 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-29 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-06-30 00:00:00 2.27
Date: 2013-06-30 00:00:00 NaT Start: 2013-06-01 00:00:00 2.19 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-02 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-03 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-04 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-05 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-06 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-07 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-08 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-09 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-10 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-11 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-12 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-13 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-14 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-15 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-16 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-17 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-18 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-19 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-20 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-21 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-22 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-23 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-24 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-25 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-26 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-27 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-28 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-29 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-30 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-07-31 00:00:00 2.32
Date: 2013-07-31 00:00:00 NaT Start: 2013-07-01 00:00:00 2.27 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-02 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-03 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-04 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-05 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-06 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-07 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-08 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-09 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-10 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-11 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-12 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-13 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-14 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-15 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-16 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-17 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-18 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-19 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-20 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-21 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-22 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-23 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-24 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-25 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-26 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-27 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-28 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-29 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-30 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-08-31 00:00:00 2.29
Date: 2013-08-31 00:00:00 NaT Start: 2013-08-01 00:00:00 2.32 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-02 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-03 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-04 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-05 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-06 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-07 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-08 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-09 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-10 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-11 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-12 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-13 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-14 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-15 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-16 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-17 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-18 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-19 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-20 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-21 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-22 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-23 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-24 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-25 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-26 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-27 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-28 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-29 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-09-30 00:00:00 2.31
Date: 2013-09-30 00:00:00 NaT Start: 2013-09-01 00:00:00 2.29 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-02 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-03 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-04 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-05 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-06 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-07 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-08 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-09 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-10 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-11 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-12 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-13 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-14 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-15 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-16 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-17 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-18 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-19 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-20 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-21 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-22 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-23 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-24 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-25 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-26 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-27 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-28 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-29 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-30 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-10-31 00:00:00 2.29
Date: 2013-10-31 00:00:00 NaT Start: 2013-10-01 00:00:00 2.31 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-02 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-03 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-04 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-05 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-06 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-07 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-08 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-09 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-10 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-11 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-12 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-13 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-14 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-15 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-16 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-17 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-18 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-19 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-20 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-21 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-22 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-23 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-24 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-25 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-26 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-27 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-28 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-29 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-11-30 00:00:00 2.28
Date: 2013-11-30 00:00:00 NaT Start: 2013-11-01 00:00:00 2.29 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-02 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-03 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-04 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-05 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-06 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-07 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-08 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-09 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-10 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-11 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-12 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-13 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-14 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-15 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-16 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-17 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-18 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-19 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-20 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-21 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-22 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-23 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-24 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-25 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-26 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-27 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-28 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-29 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-30 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2013-12-31 00:00:00 2.33
Date: 2013-12-31 00:00:00 NaT Start: 2013-12-01 00:00:00 2.28 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-02 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-03 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-04 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-05 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-06 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-07 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-08 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-09 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-10 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-11 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-12 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-13 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-14 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-15 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-16 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-17 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-18 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-19 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-20 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-21 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-22 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-23 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-24 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-25 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-26 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-27 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-28 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-29 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-30 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-01-31 00:00:00 2.26
Date: 2014-01-31 00:00:00 NaT Start: 2014-01-01 00:00:00 2.33 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-02 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-03 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-04 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-05 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-06 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-07 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-08 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-09 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-10 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-11 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-12 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-13 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-14 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-15 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-16 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-17 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-18 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-19 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-20 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-21 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-22 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-23 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-24 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-25 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-26 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-27 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-02-28 00:00:00 2.29
Date: 2014-02-28 00:00:00 NaT Start: 2014-02-01 00:00:00 2.26 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-02 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-03 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-04 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-05 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-06 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-07 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-08 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-09 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-10 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-11 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-12 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-13 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-14 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-15 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-16 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-17 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-18 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-19 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-20 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-21 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-22 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-23 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-24 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-25 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-26 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-27 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-28 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-29 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-30 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-03-31 00:00:00 2.29
Date: 2014-03-31 00:00:00 NaT Start: 2014-03-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-02 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-03 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-04 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-05 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-06 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-07 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-08 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-09 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-10 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-11 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-12 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-13 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-14 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-15 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-16 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-17 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-18 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-19 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-20 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-21 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-22 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-23 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-24 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-25 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-26 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-27 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-28 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-29 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-04-30 00:00:00 2.31
Date: 2014-04-30 00:00:00 NaT Start: 2014-04-01 00:00:00 2.29 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-02 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-03 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-04 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-05 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-06 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-07 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-08 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-09 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-10 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-11 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-12 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-13 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-14 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-15 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-16 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-17 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-18 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-19 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-20 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-21 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-22 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-23 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-24 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-25 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-26 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-27 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-28 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-29 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-30 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-05-31 00:00:00 2.31
Date: 2014-05-31 00:00:00 NaT Start: 2014-05-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-02 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-03 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-04 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-05 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-06 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-07 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-08 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-09 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-10 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-11 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-12 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-13 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-14 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-15 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-16 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-17 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-18 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-19 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-20 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-21 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-22 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-23 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-24 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-25 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-26 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-27 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-28 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-29 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-06-30 00:00:00 2.35
Date: 2014-06-30 00:00:00 NaT Start: 2014-06-01 00:00:00 2.31 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-02 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-03 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-04 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-05 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-06 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-07 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-08 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-09 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-10 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-11 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-12 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-13 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-14 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-15 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-16 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-17 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-18 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-19 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-20 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-21 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-22 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-23 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-24 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-25 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-26 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-27 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-28 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-29 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-30 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-07-31 00:00:00 2.3
Date: 2014-07-31 00:00:00 NaT Start: 2014-07-01 00:00:00 2.35 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-02 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-03 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-04 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-05 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-06 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-07 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-08 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-09 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-10 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-11 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-12 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-13 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-14 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-15 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-16 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-17 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-18 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-19 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-20 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-21 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-22 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-23 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-24 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-25 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-26 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-27 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-28 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-29 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-30 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-08-31 00:00:00 2.21
Date: 2014-08-31 00:00:00 NaT Start: 2014-08-01 00:00:00 2.3 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-02 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-03 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-04 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-05 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-06 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-07 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-08 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-09 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-10 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-11 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-12 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-13 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-14 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-15 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-16 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-17 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-18 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-19 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-20 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-21 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-22 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-23 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-24 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-25 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-26 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-27 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-28 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-29 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-09-30 00:00:00 2.08
Date: 2014-09-30 00:00:00 NaT Start: 2014-09-01 00:00:00 2.21 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-02 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-03 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-04 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-05 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-06 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-07 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-08 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-09 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-10 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-11 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-12 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-13 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-14 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-15 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-16 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-17 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-18 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-19 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-20 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-21 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-22 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-23 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-24 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-25 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-26 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-27 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-28 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-29 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-30 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-10-31 00:00:00 2.05
Date: 2014-10-31 00:00:00 NaT Start: 2014-10-01 00:00:00 2.08 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-02 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-03 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-04 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-05 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-06 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-07 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-08 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-09 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-10 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-11 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-12 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-13 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-14 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-15 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-16 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-17 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-18 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-19 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-20 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-21 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-22 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-23 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-24 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-25 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-26 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-27 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-28 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-29 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-11-30 00:00:00 1.94
Date: 2014-11-30 00:00:00 NaT Start: 2014-11-01 00:00:00 2.05 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-02 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-03 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-04 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-05 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-06 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-07 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-08 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-09 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-10 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-11 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-12 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-13 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-14 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-15 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-16 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-17 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-18 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-19 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-20 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-21 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-22 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-23 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-24 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-25 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-26 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-27 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-28 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-29 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-30 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2014-12-31 00:00:00 1.8
Date: 2014-12-31 00:00:00 NaT Start: 2014-12-01 00:00:00 1.94 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-02 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-03 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-04 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-05 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-06 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-07 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-08 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-09 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-10 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-11 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-12 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-13 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-14 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-15 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-16 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-17 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-18 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-19 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-20 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-21 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-22 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-23 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-24 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-25 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-26 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-27 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-28 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-29 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-30 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-01-31 00:00:00 1.84
Date: 2015-01-31 00:00:00 NaT Start: 2015-01-01 00:00:00 1.8 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-02 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-03 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-04 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-05 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-06 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-07 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-08 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-09 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-10 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-11 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-12 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-13 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-14 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-15 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-16 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-17 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-18 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-19 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-20 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-21 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-22 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-23 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-24 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-25 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-26 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-27 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-02-28 00:00:00 1.9
Date: 2015-02-28 00:00:00 NaT Start: 2015-02-01 00:00:00 1.84 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-02 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-03 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-04 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-05 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-06 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-07 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-08 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-09 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-10 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-11 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-12 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-13 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-14 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-15 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-16 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-17 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-18 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-19 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-20 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-21 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-22 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-23 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-24 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-25 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-26 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-27 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-28 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-29 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-30 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-03-31 00:00:00 1.94
Date: 2015-03-31 00:00:00 NaT Start: 2015-03-01 00:00:00 1.9 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-02 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-03 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-04 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-05 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-06 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-07 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-08 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-09 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-10 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-11 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-12 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-13 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-14 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-15 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-16 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-17 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-18 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-19 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-20 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-21 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-22 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-23 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-24 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-25 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-26 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-27 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-28 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-29 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-04-30 00:00:00 2.0
Date: 2015-04-30 00:00:00 NaT Start: 2015-04-01 00:00:00 1.94 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-02 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-03 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-04 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-05 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-06 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-07 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-08 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-09 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-10 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-11 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-12 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-13 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-14 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-15 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-16 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-17 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-18 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-19 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-20 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-21 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-22 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-23 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-24 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-25 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-26 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-27 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-28 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-29 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-30 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-05-31 00:00:00 1.98
Date: 2015-05-31 00:00:00 NaT Start: 2015-05-01 00:00:00 2.0 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-02 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-03 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-04 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-05 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-06 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-07 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-08 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-09 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-10 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-11 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-12 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-13 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-14 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-15 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-16 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-17 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-18 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-19 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-20 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-21 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-22 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-23 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-24 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-25 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-26 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-27 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-28 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-29 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-06-30 00:00:00 1.96
Date: 2015-06-30 00:00:00 NaT Start: 2015-06-01 00:00:00 1.98 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-02 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-03 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-04 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-05 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-06 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-07 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-08 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-09 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-10 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-11 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-12 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-13 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-14 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-15 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-16 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-17 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-18 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-19 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-20 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-21 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-22 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-23 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-24 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-25 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-26 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-27 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-28 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-29 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-30 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-07-31 00:00:00 1.78
Date: 2015-07-31 00:00:00 NaT Start: 2015-07-01 00:00:00 1.96 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-02 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-03 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-04 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-05 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-06 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-07 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-08 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-09 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-10 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-11 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-12 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-13 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-14 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-15 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-16 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-17 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-18 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-19 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-20 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-21 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-22 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-23 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-24 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-25 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-26 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-27 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-28 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-29 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-30 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-08-31 00:00:00 1.71
Date: 2015-08-31 00:00:00 NaT Start: 2015-08-01 00:00:00 1.78 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-02 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-03 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-04 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-05 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-06 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-07 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-08 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-09 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-10 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-11 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-12 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-13 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-14 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-15 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-16 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-17 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-18 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-19 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-20 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-21 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-22 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-23 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-24 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-25 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-26 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-27 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-28 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-29 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-09-30 00:00:00 1.67
Date: 2015-09-30 00:00:00 NaT Start: 2015-09-01 00:00:00 1.71 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-02 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-03 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-04 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-05 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-06 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-07 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-08 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-09 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-10 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-11 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-12 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-13 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-14 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-15 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-16 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-17 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-18 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-19 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-20 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-21 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-22 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-23 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-24 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-25 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-26 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-27 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-28 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-29 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-30 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-10-31 00:00:00 1.78
Date: 2015-10-31 00:00:00 NaT Start: 2015-10-01 00:00:00 1.67 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-02 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-03 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-04 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-05 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-06 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-07 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-08 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-09 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-10 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-11 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-12 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-13 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-14 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-15 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-16 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-17 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-18 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-19 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-20 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-21 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-22 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-23 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-24 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-25 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-26 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-27 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-28 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-29 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-11-30 00:00:00 1.71
Date: 2015-11-30 00:00:00 NaT Start: 2015-11-01 00:00:00 1.78 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-02 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-03 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-04 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-05 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-06 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-07 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-08 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-09 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-10 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-11 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-12 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-13 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-14 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-15 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-16 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-17 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-18 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-19 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-20 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-21 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-22 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-23 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-24 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-25 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-26 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-27 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-28 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-29 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-30 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2015-12-31 00:00:00 1.6
Date: 2015-12-31 00:00:00 NaT Start: 2015-12-01 00:00:00 1.71 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-02 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-03 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-04 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-05 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-06 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-07 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-08 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-09 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-10 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-11 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-12 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-13 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-14 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-15 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-16 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-17 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-18 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-19 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-20 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-21 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-22 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-23 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-24 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-25 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-26 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-27 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-28 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-29 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-30 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-01-31 00:00:00 1.53
Date: 2016-01-31 00:00:00 NaT Start: 2016-01-01 00:00:00 1.6 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-02 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-03 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-04 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-05 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-06 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-07 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-08 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-09 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-10 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-11 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-12 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-13 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-14 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-15 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-16 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-17 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-18 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-19 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-20 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-21 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-22 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-23 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-24 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-25 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-26 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-27 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-28 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-02-29 00:00:00 1.69
Date: 2016-02-29 00:00:00 NaT Start: 2016-02-01 00:00:00 1.53 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-02 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-03 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-04 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-05 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-06 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-07 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-08 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-09 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-10 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-11 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-12 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-13 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-14 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-15 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-16 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-17 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-18 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-19 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-20 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-21 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-22 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-23 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-24 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-25 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-26 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-27 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-28 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-29 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-30 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-03-31 00:00:00 1.76
Date: 2016-03-31 00:00:00 NaT Start: 2016-03-01 00:00:00 1.69 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-02 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-03 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-04 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-05 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-06 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-07 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-08 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-09 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-10 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-11 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-12 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-13 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-14 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-15 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-16 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-17 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-18 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-19 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-20 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-21 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-22 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-23 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-24 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-25 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-26 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-27 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-28 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-29 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-04-30 00:00:00 1.77
Date: 2016-04-30 00:00:00 NaT Start: 2016-04-01 00:00:00 1.76 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-02 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-03 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-04 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-05 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-06 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-07 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-08 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-09 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-10 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-11 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-12 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-13 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-14 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-15 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-16 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-17 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-18 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-19 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-20 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-21 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-22 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-23 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-24 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-25 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-26 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-27 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-28 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-29 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-30 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-05-31 00:00:00 1.63
Date: 2016-05-31 00:00:00 NaT Start: 2016-05-01 00:00:00 1.77 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-02 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-03 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-04 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-05 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-06 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-07 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-08 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-09 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-10 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-11 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-12 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-13 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-14 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-15 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-16 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-17 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-18 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-19 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-20 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-21 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-22 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-23 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-24 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-25 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-26 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-27 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-28 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-29 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-06-30 00:00:00 1.62
Date: 2016-06-30 00:00:00 NaT Start: 2016-06-01 00:00:00 1.63 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-02 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-03 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-04 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-05 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-06 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-07 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-08 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-09 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-10 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-11 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-12 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-13 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-14 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-15 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-16 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-17 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-18 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-19 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-20 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-21 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-22 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-23 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-24 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-25 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-26 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-27 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-28 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-29 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-30 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-07-31 00:00:00 1.64
Date: 2016-07-31 00:00:00 NaT Start: 2016-07-01 00:00:00 1.62 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-02 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-03 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-04 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-05 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-06 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-07 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-08 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-09 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-10 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-11 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-12 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-13 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-14 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-15 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-16 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-17 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-18 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-19 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-20 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-21 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-22 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-23 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-24 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-25 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-26 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-27 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-28 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-29 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-30 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-08-31 00:00:00 1.71
Date: 2016-08-31 00:00:00 NaT Start: 2016-08-01 00:00:00 1.64 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-02 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-03 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-04 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-05 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-06 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-07 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-08 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-09 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-10 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-11 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-12 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-13 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-14 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-15 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-16 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-17 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-18 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-19 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-20 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-21 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-22 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-23 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-24 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-25 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-26 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-27 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-28 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-29 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-09-30 00:00:00 1.81
Date: 2016-09-30 00:00:00 NaT Start: 2016-09-01 00:00:00 1.71 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-02 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-03 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-04 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-05 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-06 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-07 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-08 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-09 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-10 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-11 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-12 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-13 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-14 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-15 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-16 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-17 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-18 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-19 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-20 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-21 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-22 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-23 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-24 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-25 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-26 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-27 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-28 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-29 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-30 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-10-31 00:00:00 2.0
Date: 2016-10-31 00:00:00 NaT Start: 2016-10-01 00:00:00 1.81 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-02 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-03 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-04 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-05 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-06 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-07 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-08 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-09 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-10 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-11 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-12 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-13 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-14 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-15 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-16 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-17 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-18 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-19 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-20 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-21 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-22 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-23 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-24 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-25 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-26 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-27 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-28 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-29 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-11-30 00:00:00 2.07
Date: 2016-11-30 00:00:00 NaT Start: 2016-11-01 00:00:00 2.0 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-02 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-03 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-04 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-05 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-06 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-07 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-08 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-09 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-10 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-11 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-12 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-13 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-14 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-15 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-16 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-17 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-18 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-19 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-20 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-21 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-22 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-23 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-24 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-25 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-26 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-27 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-28 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-29 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-30 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2016-12-31 00:00:00 2.1
Date: 2016-12-31 00:00:00 NaT Start: 2016-12-01 00:00:00 2.07 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-02 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-03 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-04 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-05 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-06 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-07 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-08 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-09 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-10 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-11 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-12 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-13 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-14 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-15 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-16 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-17 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-18 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-19 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-20 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-21 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-22 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-23 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-24 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-25 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-26 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-27 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-28 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-29 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-30 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-01-31 00:00:00 2.1
Date: 2017-01-31 00:00:00 NaT Start: 2017-01-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-02 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-03 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-04 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-05 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-06 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-07 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-08 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-09 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-10 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-11 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-12 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-13 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-14 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-15 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-16 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-17 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-18 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-19 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-20 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-21 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-22 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-23 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-24 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-25 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-26 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-27 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-02-28 00:00:00 2.09
Date: 2017-02-28 00:00:00 NaT Start: 2017-02-01 00:00:00 2.1 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-02 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-03 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-04 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-05 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-06 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-07 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-08 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-09 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-10 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-11 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-12 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-13 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-14 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-15 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-16 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-17 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-18 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-19 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-20 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-21 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-22 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-23 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-24 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-25 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-26 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-27 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-28 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-29 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-30 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-03-31 00:00:00 2.03
Date: 2017-03-31 00:00:00 NaT Start: 2017-03-01 00:00:00 2.09 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-02 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-03 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-04 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-05 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-06 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-07 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-08 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-09 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-10 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-11 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-12 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-13 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-14 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-15 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-16 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-17 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-18 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-19 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-20 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-21 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-22 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-23 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-24 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-25 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-26 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-27 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-28 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-29 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-04-30 00:00:00 1.97
Date: 2017-04-30 00:00:00 NaT Start: 2017-04-01 00:00:00 2.03 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-02 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-03 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-04 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-05 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-06 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-07 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-08 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-09 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-10 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-11 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-12 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-13 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-14 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-15 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-16 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-17 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-18 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-19 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-20 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-21 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-22 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-23 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-24 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-25 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-26 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-27 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-28 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-29 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-30 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-05-31 00:00:00 1.87
Date: 2017-05-31 00:00:00 NaT Start: 2017-05-01 00:00:00 1.97 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-02 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-03 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-04 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-05 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-06 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-07 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-08 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-09 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-10 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-11 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-12 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-13 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-14 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-15 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-16 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-17 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-18 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-19 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-20 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-21 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-22 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-23 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-24 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-25 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-26 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-27 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-28 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-29 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-06-30 00:00:00 1.87
Date: 2017-06-30 00:00:00 NaT Start: 2017-06-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-02 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-03 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-04 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-05 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-06 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-07 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-08 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-09 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-10 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-11 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-12 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-13 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-14 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-15 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-16 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-17 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-18 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-19 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-20 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-21 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-22 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-23 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-24 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-25 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-26 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-27 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-28 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-29 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-30 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-07-31 00:00:00 1.87
Date: 2017-07-31 00:00:00 NaT Start: 2017-07-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-02 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-03 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-04 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-05 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-06 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-07 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-08 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-09 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-10 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-11 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-12 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-13 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-14 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-15 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-16 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-17 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-18 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-19 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-20 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-21 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-22 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-23 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-24 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-25 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-26 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-27 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-28 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-29 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-30 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-08-31 00:00:00 1.91
Date: 2017-08-31 00:00:00 NaT Start: 2017-08-01 00:00:00 1.87 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-02 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-03 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-04 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-05 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-06 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-07 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-08 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-09 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-10 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-11 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-12 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-13 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-14 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-15 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-16 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-17 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-18 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-19 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-20 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-21 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-22 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-23 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-24 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-25 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-26 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-27 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-28 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-29 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-09-30 00:00:00 1.94
Date: 2017-09-30 00:00:00 NaT Start: 2017-09-01 00:00:00 1.91 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-02 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-03 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-04 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-05 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-06 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-07 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-08 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-09 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-10 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-11 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-12 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-13 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-14 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-15 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-16 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-17 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-18 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-19 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-20 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-21 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-22 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-23 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-24 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-25 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-26 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-27 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-28 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-29 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-30 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-10-31 00:00:00 1.93
Date: 2017-10-31 00:00:00 NaT Start: 2017-10-01 00:00:00 1.94 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-02 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-03 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-04 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-05 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-06 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-07 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-08 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-09 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-10 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-11 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-12 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-13 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-14 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-15 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-16 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-17 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-18 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-19 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-20 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-21 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-22 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-23 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-24 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-25 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-26 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-27 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-28 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-29 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-11-30 00:00:00 1.97
Date: 2017-11-30 00:00:00 NaT Start: 2017-11-01 00:00:00 1.93 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-02 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-03 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-04 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-05 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-06 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-07 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-08 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-09 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-10 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-11 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-12 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-13 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-14 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-15 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-16 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-17 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-18 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-19 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-20 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-21 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-22 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-23 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-24 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-25 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-26 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-27 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-28 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-29 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-30 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2017-12-31 00:00:00 2.08
Date: 2017-12-31 00:00:00 NaT Start: 2017-12-01 00:00:00 1.97 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-02 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-03 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-04 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-05 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-06 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-07 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-08 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-09 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-10 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-11 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-12 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-13 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-14 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-15 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-16 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-17 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-18 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-19 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-20 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-21 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-22 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-23 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-24 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-25 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-26 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-27 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-28 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-29 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-30 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-01-31 00:00:00 2.14
Date: 2018-01-31 00:00:00 NaT Start: 2018-01-01 00:00:00 2.08 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-02 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-03 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-04 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-05 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-06 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-07 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-08 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-09 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-10 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-11 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-12 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-13 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-14 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-15 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-16 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-17 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-18 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-19 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-20 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-21 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-22 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-23 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-24 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-25 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-26 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-27 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-02-28 00:00:00 2.1
Date: 2018-02-28 00:00:00 NaT Start: 2018-02-01 00:00:00 2.14 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-02 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-03 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-04 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-05 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-06 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-07 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-08 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-09 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-10 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-11 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-12 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-13 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-14 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-15 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-16 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-17 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-18 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-19 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-20 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-21 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-22 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-23 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-24 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-25 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-26 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-27 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-28 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-29 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-30 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-03-31 00:00:00 2.14
Date: 2018-03-31 00:00:00 NaT Start: 2018-03-01 00:00:00 2.1 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-02 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-03 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-04 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-05 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-06 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-07 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-08 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-09 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-10 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-11 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-12 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-13 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-14 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-15 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-16 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-17 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-18 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-19 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-20 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-21 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-22 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-23 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-24 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-25 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-26 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-27 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-28 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-29 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-04-30 00:00:00 2.15
Date: 2018-04-30 00:00:00 NaT Start: 2018-04-01 00:00:00 2.14 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-02 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-03 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-04 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-05 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-06 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-07 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-08 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-09 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-10 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-11 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-12 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-13 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-14 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-15 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-16 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-17 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-18 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-19 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-20 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-21 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-22 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-23 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-24 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-25 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-26 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-27 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-28 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-29 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-30 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-05-31 00:00:00 2.12
Date: 2018-05-31 00:00:00 NaT Start: 2018-05-01 00:00:00 2.15 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-02 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-03 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-04 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-05 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-06 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-07 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-08 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-09 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-10 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-11 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-12 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-13 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-14 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-15 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-16 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-17 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-18 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-19 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-20 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-21 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-22 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-23 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-24 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-25 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-26 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-27 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-28 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-29 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-06-30 00:00:00 2.13
Date: 2018-06-30 00:00:00 NaT Start: 2018-06-01 00:00:00 2.12 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-02 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-03 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-04 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-05 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-06 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-07 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-08 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-09 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-10 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-11 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-12 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-13 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-14 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-15 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-16 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-17 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-18 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-19 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-20 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-21 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-22 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-23 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-24 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-25 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-26 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-27 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-28 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-29 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-30 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-07-31 00:00:00 2.12
Date: 2018-07-31 00:00:00 NaT Start: 2018-07-01 00:00:00 2.13 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-02 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-03 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-04 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-05 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-06 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-07 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-08 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-09 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-10 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-11 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-12 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-13 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-14 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-15 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-16 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-17 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-18 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-19 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-20 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-21 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-22 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-23 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-24 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-25 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-26 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-27 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-28 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-29 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-30 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-08-31 00:00:00 2.15
Date: 2018-08-31 00:00:00 NaT Start: 2018-08-01 00:00:00 2.12 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-02 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-03 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-04 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-05 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-06 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-07 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-08 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-09 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-10 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-11 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-12 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-13 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-14 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-15 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-16 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-17 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-18 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-19 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-20 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-21 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-22 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-23 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-24 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-25 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-26 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-27 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-28 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-29 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-09-30 00:00:00 2.13
Date: 2018-09-30 00:00:00 NaT Start: 2018-09-01 00:00:00 2.15 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-02 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-03 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-04 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-05 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-06 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-07 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-08 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-09 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-10 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-11 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-12 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-13 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-14 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-15 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-16 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-17 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-18 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-19 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-20 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-21 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-22 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-23 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-24 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-25 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-26 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-27 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-28 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-29 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-30 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-10-31 00:00:00 2.06
Date: 2018-10-31 00:00:00 NaT Start: 2018-10-01 00:00:00 2.13 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-02 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-03 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-04 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-05 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-06 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-07 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-08 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-09 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-10 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-11 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-12 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-13 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-14 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-15 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-16 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-17 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-18 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-19 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-20 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-21 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-22 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-23 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-24 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-25 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-26 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-27 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-28 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-29 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-11-30 00:00:00 1.91
Date: 2018-11-30 00:00:00 NaT Start: 2018-11-01 00:00:00 2.06 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-02 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-03 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-04 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-05 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-06 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-07 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-08 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-09 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-10 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-11 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-12 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-13 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-14 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-15 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-16 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-17 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-18 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-19 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-20 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-21 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-22 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-23 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-24 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-25 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-26 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-27 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-28 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-29 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-30 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2018-12-31 00:00:00 1.85
Date: 2018-12-31 00:00:00 NaT Start: 2018-12-01 00:00:00 1.91 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-02 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-03 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-04 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-05 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-06 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-07 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-08 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-09 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-10 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-11 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-12 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-13 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-14 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-15 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-16 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-17 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-18 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-19 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-20 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-21 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-22 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-23 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-24 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-25 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-26 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-27 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-28 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-29 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-30 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-01-31 00:00:00 1.92
Date: 2019-01-31 00:00:00 NaT Start: 2019-01-01 00:00:00 1.85 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-02 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-03 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-04 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-05 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-06 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-07 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-08 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-09 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-10 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-11 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-12 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-13 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-14 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-15 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-16 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-17 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-18 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-19 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-20 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-21 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-22 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-23 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-24 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-25 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-26 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-27 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-02-28 00:00:00 1.96
Date: 2019-02-28 00:00:00 NaT Start: 2019-02-01 00:00:00 1.92 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-02 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-03 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-04 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-05 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-06 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-07 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-08 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-09 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-10 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-11 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-12 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-13 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-14 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-15 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-16 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-17 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-18 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-19 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-20 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-21 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-22 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-23 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-24 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-25 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-26 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-27 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-28 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-29 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-30 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-03-31 00:00:00 1.97
Date: 2019-03-31 00:00:00 NaT Start: 2019-03-01 00:00:00 1.96 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-02 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-03 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-04 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-05 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-06 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-07 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-08 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-09 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-10 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-11 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-12 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-13 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-14 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-15 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-16 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-17 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-18 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-19 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-20 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-21 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-22 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-23 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-24 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-25 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-26 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-27 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-28 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-29 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-04-30 00:00:00 1.9
Date: 2019-04-30 00:00:00 NaT Start: 2019-04-01 00:00:00 1.97 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-02 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-03 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-04 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-05 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-06 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-07 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-08 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-09 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-10 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-11 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-12 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-13 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-14 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-15 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-16 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-17 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-18 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-19 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-20 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-21 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-22 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-23 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-24 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-25 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-26 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-27 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-28 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-29 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-30 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-05-31 00:00:00 1.78
Date: 2019-05-31 00:00:00 NaT Start: 2019-05-01 00:00:00 1.9 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-02 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-03 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-04 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-05 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-06 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-07 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-08 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-09 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-10 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-11 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-12 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-13 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-14 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-15 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-16 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-17 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-18 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-19 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-20 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-21 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-22 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-23 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-24 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-25 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-26 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-27 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-28 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-29 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-06-30 00:00:00 1.8
Date: 2019-06-30 00:00:00 NaT Start: 2019-06-01 00:00:00 1.78 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-02 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-03 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-04 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-05 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-06 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-07 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-08 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-09 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-10 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-11 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-12 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-13 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-14 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-15 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-16 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-17 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-18 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-19 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-20 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-21 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-22 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-23 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-24 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-25 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-26 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-27 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-28 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-29 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-30 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-07-31 00:00:00 1.63
Date: 2019-07-31 00:00:00 NaT Start: 2019-07-01 00:00:00 1.8 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-02 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-03 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-04 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-05 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-06 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-07 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-08 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-09 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-10 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-11 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-12 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-13 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-14 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-15 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-16 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-17 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-18 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-19 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-20 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-21 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-22 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-23 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-24 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-25 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-26 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-27 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-28 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-29 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-30 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-08-31 00:00:00 1.65
Date: 2019-08-31 00:00:00 NaT Start: 2019-08-01 00:00:00 1.63 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-02 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-03 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-04 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-05 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-06 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-07 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-08 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-09 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-10 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-11 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-12 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-13 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-14 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-15 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-16 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-17 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-18 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-19 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-20 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-21 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-22 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-23 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-24 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-25 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-26 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-27 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-28 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-29 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-09-30 00:00:00 1.64
Date: 2019-09-30 00:00:00 NaT Start: 2019-09-01 00:00:00 1.65 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-02 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-03 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-04 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-05 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-06 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-07 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-08 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-09 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-10 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-11 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-12 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-13 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-14 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-15 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-16 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-17 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-18 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-19 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-20 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-21 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-22 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-23 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-24 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-25 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-26 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-27 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-28 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-29 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-30 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-10-31 00:00:00 1.74
Date: 2019-10-31 00:00:00 NaT Start: 2019-10-01 00:00:00 1.64 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-02 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-03 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-04 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-05 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-06 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-07 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-08 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-09 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-10 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-11 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-12 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-13 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-14 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-15 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-16 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-17 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-18 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-19 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-20 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-21 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-22 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-23 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-24 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-25 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-26 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-27 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-28 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-29 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-11-30 00:00:00 1.78
Date: 2019-11-30 00:00:00 NaT Start: 2019-11-01 00:00:00 1.74 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-02 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-03 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-04 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-05 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-06 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-07 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-08 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-09 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-10 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-11 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-12 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-13 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-14 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-15 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-16 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-17 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-18 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-19 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-20 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-21 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-22 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-23 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-24 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-25 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-26 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-27 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-28 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-29 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-30 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2019-12-31 00:00:00 1.79
Date: 2019-12-31 00:00:00 NaT Start: 2019-12-01 00:00:00 1.78 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-02 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-03 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-04 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-05 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-06 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-07 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-08 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-09 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-10 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-11 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-12 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-13 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-14 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-15 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-16 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-17 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-18 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-19 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-20 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-21 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-22 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-23 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-24 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-25 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-26 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-27 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-28 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-29 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-30 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-01-31 00:00:00 1.68
Date: 2020-01-31 00:00:00 NaT Start: 2020-01-01 00:00:00 1.79 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-02 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-03 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-04 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-05 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-06 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-07 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-08 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-09 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-10 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-11 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-12 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-13 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-14 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-15 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-16 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-17 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-18 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-19 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-20 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-21 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-22 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-23 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-24 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-25 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-26 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-27 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-28 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-02-29 00:00:00 1.29
Date: 2020-02-29 00:00:00 NaT Start: 2020-02-01 00:00:00 1.68 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-02 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-03 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-04 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-05 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-06 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-07 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-08 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-09 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-10 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-11 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-12 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-13 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-14 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-15 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-16 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-17 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-18 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-19 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-20 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-21 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-22 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-23 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-24 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-25 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-26 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-27 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-28 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-29 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-30 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-03-31 00:00:00 1.39
Date: 2020-03-31 00:00:00 NaT Start: 2020-03-01 00:00:00 1.29 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-02 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-03 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-04 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-05 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-06 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-07 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-08 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-09 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-10 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-11 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-12 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-13 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-14 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-15 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-16 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-17 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-18 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-19 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-20 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-21 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-22 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-23 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-24 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-25 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-26 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-27 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-28 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-29 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-04-30 00:00:00 1.46
Date: 2020-04-30 00:00:00 NaT Start: 2020-04-01 00:00:00 1.39 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-02 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-03 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-04 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-05 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-06 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-07 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-08 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-09 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-10 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-11 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-12 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-13 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-14 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-15 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-16 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-17 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-18 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-19 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-20 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-21 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-22 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-23 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-24 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-25 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-26 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-27 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-28 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-29 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-30 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-05-31 00:00:00 1.55
Date: 2020-05-31 00:00:00 NaT Start: 2020-05-01 00:00:00 1.46 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-02 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-03 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-04 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-05 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-06 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-07 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-08 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-09 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-10 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-11 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-12 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-13 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-14 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-15 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-16 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-17 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-18 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-19 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-20 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-21 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-22 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-23 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-24 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-25 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-26 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-27 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-28 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-29 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-06-30 00:00:00 1.6
Date: 2020-06-30 00:00:00 NaT Start: 2020-06-01 00:00:00 1.55 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-02 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-03 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-04 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-05 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-06 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-07 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-08 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-09 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-10 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-11 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-12 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-13 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-14 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-15 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-16 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-17 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-18 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-19 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-20 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-21 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-22 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-23 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-24 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-25 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-26 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-27 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-28 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-29 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-30 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-07-31 00:00:00 1.71
Date: 2020-07-31 00:00:00 NaT Start: 2020-07-01 00:00:00 1.6 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-02 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-03 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-04 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-05 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-06 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-07 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-08 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-09 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-10 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-11 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-12 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-13 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-14 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-15 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-16 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-17 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-18 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-19 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-20 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-21 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-22 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-23 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-24 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-25 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-26 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-27 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-28 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-29 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-30 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-08-31 00:00:00 1.76
Date: 2020-08-31 00:00:00 NaT Start: 2020-08-01 00:00:00 1.71 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-02 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-03 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-04 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-05 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-06 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-07 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-08 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-09 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-10 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-11 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-12 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-13 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-14 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-15 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-16 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-17 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-18 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-19 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-20 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-21 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-22 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-23 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-24 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-25 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-26 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-27 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-28 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-29 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-09-30 00:00:00 1.86
Date: 2020-09-30 00:00:00 NaT Start: 2020-09-01 00:00:00 1.76 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-02 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-03 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-04 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-05 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-06 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-07 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-08 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-09 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-10 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-11 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-12 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-13 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-14 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-15 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-16 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-17 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-18 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-19 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-20 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-21 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-22 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-23 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-24 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-25 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-26 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-27 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-28 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-29 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-30 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-10-31 00:00:00 1.88
Date: 2020-10-31 00:00:00 NaT Start: 2020-10-01 00:00:00 1.86 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-02 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-03 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-04 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-05 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-06 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-07 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-08 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-09 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-10 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-11 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-12 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-13 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-14 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-15 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-16 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-17 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-18 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-19 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-20 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-21 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-22 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-23 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-24 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-25 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-26 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-27 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-28 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-29 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-11-30 00:00:00 2.0
Date: 2020-11-30 00:00:00 NaT Start: 2020-11-01 00:00:00 1.88 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-02 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-03 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-04 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-05 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-06 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-07 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-08 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-09 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-10 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-11 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-12 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-13 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-14 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-15 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-16 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-17 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-18 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-19 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-20 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-21 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-22 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-23 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-24 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-25 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-26 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-27 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-28 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-29 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-30 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2020-12-31 00:00:00 2.1
Date: 2020-12-31 00:00:00 NaT Start: 2020-12-01 00:00:00 2.0 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-02 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-03 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-04 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-05 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-06 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-07 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-08 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-09 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-10 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-11 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-12 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-13 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-14 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-15 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-16 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-17 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-18 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-19 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-20 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-21 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-22 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-23 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-24 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-25 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-26 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-27 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-28 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-29 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-30 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-01-31 00:00:00 2.14
Date: 2021-01-31 00:00:00 NaT Start: 2021-01-01 00:00:00 2.1 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-02 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-03 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-04 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-05 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-06 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-07 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-08 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-09 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-10 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-11 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-12 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-13 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-14 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-15 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-16 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-17 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-18 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-19 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-20 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-21 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-22 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-23 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-24 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-25 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-26 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-27 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-02-28 00:00:00 2.23
Date: 2021-02-28 00:00:00 NaT Start: 2021-02-01 00:00:00 2.14 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-02 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-03 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-04 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-05 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-06 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-07 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-08 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-09 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-10 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-11 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-12 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-13 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-14 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-15 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-16 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-17 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-18 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-19 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-20 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-21 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-22 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-23 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-24 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-25 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-26 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-27 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-28 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-29 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-30 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-03-31 00:00:00 2.25
Date: 2021-03-31 00:00:00 NaT Start: 2021-03-01 00:00:00 2.23 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-02 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-03 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-04 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-05 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-06 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-07 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-08 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-09 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-10 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-11 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-12 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-13 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-14 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-15 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-16 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-17 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-18 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-19 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-20 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-21 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-22 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-23 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-24 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-25 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-26 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-27 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-28 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-29 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-04-30 00:00:00 2.33
Date: 2021-04-30 00:00:00 NaT Start: 2021-04-01 00:00:00 2.25 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-02 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-03 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-04 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-05 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-06 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-07 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-08 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-09 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-10 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-11 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-12 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-13 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-14 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-15 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-16 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-17 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-18 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-19 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-20 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-21 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-22 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-23 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-24 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-25 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-26 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-27 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-28 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-29 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-30 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-05-31 00:00:00 2.29
Date: 2021-05-31 00:00:00 NaT Start: 2021-05-01 00:00:00 2.33 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-02 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-03 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-04 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-05 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-06 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-07 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-08 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-09 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-10 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-11 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-12 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-13 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-14 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-15 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-16 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-17 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-18 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-19 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-20 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-21 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-22 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-23 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-24 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-25 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-26 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-27 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-28 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-29 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-06-30 00:00:00 2.23
Date: 2021-06-30 00:00:00 NaT Start: 2021-06-01 00:00:00 2.29 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-02 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-03 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-04 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-05 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-06 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-07 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-08 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-09 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-10 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-11 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-12 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-13 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-14 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-15 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-16 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-17 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-18 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-19 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-20 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-21 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-22 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-23 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-24 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-25 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-26 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-27 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-28 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-29 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-30 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-07-31 00:00:00 2.23
Date: 2021-07-31 00:00:00 NaT Start: 2021-07-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-02 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-03 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-04 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-05 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-06 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-07 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-08 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-09 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-10 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-11 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-12 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-13 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-14 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-15 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-16 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-17 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-18 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-19 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-20 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-21 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-22 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-23 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-24 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-25 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-26 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-27 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-28 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-29 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-30 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-08-31 00:00:00 2.24
Date: 2021-08-31 00:00:00 NaT Start: 2021-08-01 00:00:00 2.23 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-02 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-03 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-04 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-05 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-06 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-07 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-08 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-09 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-10 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-11 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-12 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-13 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-14 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-15 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-16 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-17 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-18 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-19 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-20 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-21 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-22 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-23 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-24 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-25 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-26 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-27 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-28 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-29 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-09-30 00:00:00 2.35
Date: 2021-09-30 00:00:00 NaT Start: 2021-09-01 00:00:00 2.24 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-02 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-03 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-04 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-05 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-06 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-07 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-08 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-09 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-10 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-11 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-12 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-13 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-14 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-15 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-16 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-17 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-18 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-19 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-20 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-21 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-22 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-23 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-24 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-25 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-26 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-27 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-28 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-29 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-30 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-10-31 00:00:00 2.38
Date: 2021-10-31 00:00:00 NaT Start: 2021-10-01 00:00:00 2.35 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-02 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-03 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-04 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-05 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-06 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-07 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-08 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-09 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-10 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-11 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-12 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-13 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-14 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-15 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-16 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-17 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-18 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-19 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-20 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-21 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-22 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-23 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-24 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-25 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-26 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-27 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-28 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-29 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-11-30 00:00:00 2.27
Date: 2021-11-30 00:00:00 NaT Start: 2021-11-01 00:00:00 2.38 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-02 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-03 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-04 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-05 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-06 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-07 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-08 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-09 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-10 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-11 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-12 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-13 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-14 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-15 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-16 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-17 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-18 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-19 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-20 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-21 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-22 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-23 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-24 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-25 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-26 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-27 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-28 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-29 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-30 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2021-12-31 00:00:00 2.24
Date: 2021-12-31 00:00:00 NaT Start: 2021-12-01 00:00:00 2.27 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-02 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-03 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-04 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-05 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-06 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-07 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-08 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-09 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-10 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-11 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-12 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-13 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-14 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-15 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-16 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-17 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-18 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-19 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-20 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-21 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-22 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-23 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-24 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-25 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-26 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-27 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-28 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-29 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-30 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-01-31 00:00:00 2.18
Date: 2022-01-31 00:00:00 NaT Start: 2022-01-01 00:00:00 2.24 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-02 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-03 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-04 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-05 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-06 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-07 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-08 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-09 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-10 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-11 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-12 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-13 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-14 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-15 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-16 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-17 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-18 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-19 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-20 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-21 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-22 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-23 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-24 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-25 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-26 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-27 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-02-28 00:00:00 2.49
Date: 2022-02-28 00:00:00 NaT Start: 2022-02-01 00:00:00 2.18 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-02 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-03 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-04 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-05 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-06 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-07 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-08 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-09 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-10 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-11 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-12 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-13 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-14 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-15 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-16 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-17 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-18 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-19 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-20 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-21 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-22 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-23 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-24 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-25 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-26 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-27 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-28 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-29 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-30 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-03-31 00:00:00 2.55
Date: 2022-03-31 00:00:00 NaT Start: 2022-03-01 00:00:00 2.49 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-02 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-03 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-04 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-05 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-06 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-07 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-08 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-09 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-10 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-11 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-12 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-13 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-14 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-15 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-16 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-17 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-18 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-19 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-20 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-21 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-22 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-23 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-24 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-25 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-26 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-27 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-28 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-29 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-04-30 00:00:00 2.47
Date: 2022-04-30 00:00:00 NaT Start: 2022-04-01 00:00:00 2.55 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-02 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-03 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-04 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-05 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-06 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-07 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-08 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-09 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-10 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-11 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-12 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-13 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-14 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-15 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-16 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-17 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-18 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-19 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-20 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-21 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-22 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-23 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-24 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-25 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-26 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-27 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-28 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-29 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-30 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-05-31 00:00:00 2.47
Date: 2022-05-31 00:00:00 NaT Start: 2022-05-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-02 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-03 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-04 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-05 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-06 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-07 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-08 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-09 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-10 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-11 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-12 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-13 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-14 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-15 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-16 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-17 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-18 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-19 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-20 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-21 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-22 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-23 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-24 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-25 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-26 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-27 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-28 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-29 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-06-30 00:00:00 2.22
Date: 2022-06-30 00:00:00 NaT Start: 2022-06-01 00:00:00 2.47 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-02 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-03 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-04 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-05 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-06 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-07 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-08 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-09 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-10 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-11 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-12 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-13 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-14 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-15 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-16 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-17 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-18 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-19 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-20 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-21 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-22 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-23 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-24 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-25 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-26 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-27 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-28 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-29 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-30 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-07-31 00:00:00 2.29
Date: 2022-07-31 00:00:00 NaT Start: 2022-07-01 00:00:00 2.22 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-02 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-03 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-04 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-05 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-06 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-07 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-08 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-09 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-10 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-11 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-12 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-13 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-14 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-15 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-16 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-17 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-18 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-19 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-20 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-21 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-22 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-23 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-24 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-25 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-26 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-27 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-28 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-29 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-30 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-08-31 00:00:00 2.27
Date: 2022-08-31 00:00:00 NaT Start: 2022-08-01 00:00:00 2.29 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-02 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-03 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-04 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-05 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-06 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-07 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-08 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-09 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-10 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-11 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-12 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-13 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-14 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-15 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-16 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-17 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-18 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-19 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-20 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-21 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-22 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-23 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-24 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-25 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-26 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-27 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-28 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-29 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-09-30 00:00:00 2.33
Date: 2022-09-30 00:00:00 NaT Start: 2022-09-01 00:00:00 2.27 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-02 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-03 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-04 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-05 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-06 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-07 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-08 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-09 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-10 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-11 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-12 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-13 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-14 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-15 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-16 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-17 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-18 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-19 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-20 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-21 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-22 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-23 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-24 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-25 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-26 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-27 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-28 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-29 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-30 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-10-31 00:00:00 2.4
Date: 2022-10-31 00:00:00 NaT Start: 2022-10-01 00:00:00 2.33 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-02 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-03 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-04 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-05 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-06 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-07 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-08 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-09 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-10 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-11 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-12 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-13 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-14 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-15 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-16 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-17 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-18 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-19 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-20 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-21 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-22 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-23 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-24 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-25 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-26 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-27 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-28 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-29 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-11-30 00:00:00 2.26
Date: 2022-11-30 00:00:00 NaT Start: 2022-11-01 00:00:00 2.4 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-02 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-03 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-04 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-05 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-06 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-07 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-08 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-09 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-10 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-11 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-12 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-13 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-14 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-15 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-16 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-17 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-18 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-19 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-20 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-21 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-22 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-23 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-24 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-25 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-26 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-27 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-28 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-29 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-30 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2022-12-31 00:00:00 2.24
Date: 2022-12-31 00:00:00 NaT Start: 2022-12-01 00:00:00 2.26 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-02 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-03 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-04 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-05 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-06 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-07 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-08 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-09 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-10 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-11 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-12 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-13 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-14 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-15 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-16 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-17 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-18 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-19 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-20 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-21 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-22 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-23 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-24 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-25 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-26 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-27 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-28 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-29 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-30 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-01-31 00:00:00 2.29
Date: 2023-01-31 00:00:00 NaT Start: 2023-01-01 00:00:00 2.24 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-02 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-03 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-04 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-05 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-06 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-07 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-08 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-09 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-10 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-11 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-12 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-13 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-14 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-15 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-16 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-17 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-18 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-19 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-20 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-21 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-22 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-23 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-24 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-25 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-26 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-27 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-02-28 00:00:00 2.26
Date: 2023-02-28 00:00:00 NaT Start: 2023-02-01 00:00:00 2.29 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-02 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-03 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-04 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-05 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-06 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-07 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-08 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-09 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-10 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-11 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-12 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-13 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-14 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-15 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-16 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-17 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-18 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-19 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-20 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-21 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-22 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-23 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-24 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-25 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-26 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-27 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-28 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-29 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-30 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-03-31 00:00:00 2.23
Date: 2023-03-31 00:00:00 NaT Start: 2023-03-01 00:00:00 2.26 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-02 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-03 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-04 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-05 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-06 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-07 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-08 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-09 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-10 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-11 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-12 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-13 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-14 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-15 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-16 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-17 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-18 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-19 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-20 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-21 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-22 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-23 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-24 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-25 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-26 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-27 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-28 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-29 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-04-30 00:00:00 2.26
Date: 2023-04-30 00:00:00 NaT Start: 2023-04-01 00:00:00 2.23 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-02 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-03 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-04 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-05 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-06 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-07 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-08 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-09 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-10 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-11 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-12 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-13 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-14 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-15 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-16 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-17 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-18 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-19 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-20 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-21 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-22 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-23 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-24 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-25 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-26 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-27 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-28 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-29 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-30 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-05-31 00:00:00 2.23
Date: 2023-05-31 00:00:00 NaT Start: 2023-05-01 00:00:00 2.26 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-02 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-03 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-04 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-05 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-06 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-07 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-08 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-09 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-10 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-11 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-12 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-13 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-14 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-15 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-16 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-17 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-18 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-19 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-20 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-21 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-22 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-23 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-24 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-25 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-26 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-27 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-28 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-29 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-06-30 00:00:00 2.27
Date: 2023-06-30 00:00:00 NaT Start: 2023-06-01 00:00:00 2.23 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-02 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-03 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-04 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-05 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-06 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-07 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-08 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-09 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-10 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-11 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-12 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-13 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-14 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-15 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-16 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-17 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-18 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-19 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-20 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-21 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-22 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-23 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-24 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-25 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-26 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-27 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-28 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-29 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-30 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-07-31 00:00:00 2.31
Date: 2023-07-31 00:00:00 NaT Start: 2023-07-01 00:00:00 2.27 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-02 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-03 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-04 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-05 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-06 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-07 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-08 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-09 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-10 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-11 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-12 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-13 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-14 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-15 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-16 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-17 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-18 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-19 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-20 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-21 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-22 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-23 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-24 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-25 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-26 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-27 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-28 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-29 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-30 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-08-31 00:00:00 2.34
Date: 2023-08-31 00:00:00 NaT Start: 2023-08-01 00:00:00 2.31 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-02 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-03 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-04 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-05 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-06 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-07 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-08 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-09 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-10 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-11 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-12 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-13 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-14 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-15 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-16 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-17 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-18 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-19 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-20 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-21 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-22 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-23 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-24 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-25 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-26 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-27 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-28 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-29 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-09-30 00:00:00 2.47
Date: 2023-09-30 00:00:00 NaT Start: 2023-09-01 00:00:00 2.34 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-02 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-03 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-04 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-05 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-06 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-07 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-08 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-09 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-10 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-11 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-12 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-13 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-14 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-15 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-16 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-17 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-18 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-19 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-20 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-21 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-22 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-23 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-24 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-25 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-26 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-27 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-28 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-29 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-30 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-10-31 00:00:00 2.4
Date: 2023-10-31 00:00:00 NaT Start: 2023-10-01 00:00:00 2.47 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-02 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-03 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-04 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-05 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-06 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-07 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-08 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-09 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-10 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-11 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-12 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-13 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-14 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-15 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-16 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-17 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-18 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-19 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-20 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-21 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-22 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-23 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-24 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-25 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-26 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-27 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-28 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-29 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-11-30 00:00:00 2.19
Date: 2023-11-30 00:00:00 NaT Start: 2023-11-01 00:00:00 2.4 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-02 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-03 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-04 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-05 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-06 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-07 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-08 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-09 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-10 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-11 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-12 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-13 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-14 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-15 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-16 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-17 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-18 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-19 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-20 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-21 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-22 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-23 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-24 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-25 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-26 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-27 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-28 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-29 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-30 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2023-12-31 00:00:00 2.24
Date: 2023-12-31 00:00:00 NaT Start: 2023-12-01 00:00:00 2.19 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-02 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-03 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-04 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-05 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-06 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-07 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-08 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-09 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-10 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-11 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-12 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-13 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-14 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-15 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-16 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-17 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-18 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-19 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-20 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-21 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-22 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-23 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-24 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-25 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-26 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-27 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-28 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-29 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-30 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-01-31 00:00:00 2.26
Date: 2024-01-31 00:00:00 NaT Start: 2024-01-01 00:00:00 2.24 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-02 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-03 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-04 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-05 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-06 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-07 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-08 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-09 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-10 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-11 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-12 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-13 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-14 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-15 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-16 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-17 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-18 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-19 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-20 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-21 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-22 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-23 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-24 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-25 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-26 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-27 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-28 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-02-29 00:00:00 2.27
Date: 2024-02-29 00:00:00 NaT Start: 2024-02-01 00:00:00 2.26 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-02 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-03 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-04 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-05 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-06 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-07 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-08 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-09 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-10 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-11 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-12 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-13 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-14 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-15 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-16 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-17 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-18 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-19 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-20 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-21 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-22 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-23 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-24 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-25 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-26 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-27 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-28 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-29 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-30 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-03-31 00:00:00 2.35
Date: 2024-03-31 00:00:00 NaT Start: 2024-03-01 00:00:00 2.27 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-02 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-03 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-04 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-05 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-06 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-07 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-08 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-09 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-10 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-11 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-12 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-13 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-14 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-15 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-16 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-17 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-18 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-19 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-20 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-21 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-22 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-23 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-24 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-25 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-26 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-27 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-28 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-29 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-04-30 00:00:00 2.35
Date: 2024-04-30 00:00:00 NaT Start: 2024-04-01 00:00:00 2.35 End: 2024-05-31 00:00:00 2.35
           Date  Inflation Rate
0    2010-02-01        2.460000
1    2010-02-02        2.461111
2    2010-02-03        2.462222
3    2010-02-04        2.463333
4    2010-02-05        2.464444
...         ...             ...
5198 2024-04-26        2.350000
5199 2024-04-27        2.350000
5200 2024-04-28        2.350000
5201 2024-04-29        2.350000
5202 2024-04-30        2.350000

[5203 rows x 2 columns]
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\3514181364.py:25: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  infr_interpolated['Inflation Rate'][index] = (infr_end-infr_start)/(end-start).days*(diff_start) + infr_start
In [1050]:
print(indicators['infr'])
           Date  Inflation Rate
0    2010-02-01        2.460000
1    2010-02-02        2.461111
2    2010-02-03        2.462222
3    2010-02-04        2.463333
4    2010-02-05        2.464444
...         ...             ...
5198 2024-04-26        2.350000
5199 2024-04-27        2.350000
5200 2024-04-28        2.350000
5201 2024-04-29        2.350000
5202 2024-04-30        2.350000

[5203 rows x 2 columns]

However, if we look at the data we can see that every indicator uses a different time frame.

To start we will determine the indicator with the most recent start time and cut out all other data from the other indicators.

In [1051]:
# Finding the starting date for each indicator
starting_dates = [df['Date'].min() for df in indicators.values()]
print(starting_dates)
[Timestamp('1954-07-01 00:00:00'), Timestamp('2021-07-29 00:00:00'), Timestamp('2006-01-02 00:00:00'), Timestamp('2010-02-01 00:00:00'), Timestamp('2008-12-16 00:00:00'), Timestamp('2008-12-16 00:00:00'), Timestamp('1982-01-04 00:00:00')]
In [1052]:
# Finding the most recent date between the starting dates
most_recent_date = starting_dates.index(max(starting_dates))
print(starting_dates[most_recent_date])
2021-07-29 00:00:00

So we now have our most recent date and we know where to cut off the other indicators... HOWEVER! It is important to always look at the rest of your data! In this case we want to see how the earliest date compares to the other dates. If it's way earlier than the others we may be unnecessarily cutting off YEARS of data when we could instead remove the outlying indicator or fill in values.

To do this we will instead order the dates from earliest to latest.

In [1053]:
# Ordering the start dates to make them easier to read
sorted_dates = sorted(starting_dates, reverse=True)
print(sorted_dates)
[Timestamp('2021-07-29 00:00:00'), Timestamp('2010-02-01 00:00:00'), Timestamp('2008-12-16 00:00:00'), Timestamp('2008-12-16 00:00:00'), Timestamp('2006-01-02 00:00:00'), Timestamp('1982-01-04 00:00:00'), Timestamp('1954-07-01 00:00:00')]

Our worries were justified! The 2021 date is 11 years earlier than the next date. On top of that we notice the next few dates tend to clump around the late 2000s. Because of this we will use the second earliest date to ensure we have sufficient data to work with.

In [1054]:
# Selecting the second most recent start date
most_recent_date = sorted_dates[1]
print(most_recent_date)
2010-02-01 00:00:00

We extend the IORB data to be the lower bound of the target federal funds rate due to the differences in how monetary policy was conducted before this rate was implemented by the fed. Before the IORB rate, the fed implemented an Interest on Excess Reserves Rate (IOER rate) and Interest on Required Reserves (IORR) rate were in use, but got merged once the Fed started to use the new monetary policy tools.

In [1055]:
# Determining what data needs to be added to IORB from the Federal Fund Rate Lower Limit
filtered_ffrl = indicators['ffrl'][indicators['ffrl']['Date'] < indicators['iorb']['Date'].min()]
filtered_ffrl = filtered_ffrl.rename(columns={'Federal Funds Target Lower Limit': 'Interest Rate on Reserve Balances'})

# Concatenating the additional data
result_iorb = pd.concat([filtered_ffrl, indicators['iorb']], ignore_index=True)
indicators['iorb'] = result_iorb
print(indicators['iorb'])
           Date  Interest Rate on Reserve Balances
0    2008-12-16                                0.0
1    2008-12-17                                0.0
2    2008-12-18                                0.0
3    2008-12-19                                0.0
4    2008-12-20                                0.0
...         ...                                ...
5625 2024-05-11                                5.4
5626 2024-05-12                                5.4
5627 2024-05-13                                5.4
5628 2024-05-14                                5.4
5629 2024-05-15                                5.4

[5630 rows x 2 columns]

You want your data to have aligned start points, so set your data to start at the start date for the latest-starting data point

In [1056]:
# Cutting off data that comes before the chosen start date
for indicator_tag in indicators:
    df = indicators[indicator_tag]
    
    # Using data frame short cuts to removes dates for the Date column that come before the specified date
    filtered_df = indicators[indicator_tag][indicators[indicator_tag]['Date'] >= most_recent_date]
    
    # Resetting the index numbers since we deleted some rows
    filtered_df = filtered_df.reset_index(drop=True)
    indicators[indicator_tag] = filtered_df
    
for df in indicators.values():
    print(df)
           Date  Daily Federal Funds Rate
0    2010-02-01                      0.14
1    2010-02-02                      0.14
2    2010-02-03                      0.13
3    2010-02-04                      0.14
4    2010-02-05                      0.13
...         ...                       ...
5211 2024-05-09                      5.33
5212 2024-05-10                      5.33
5213 2024-05-11                      5.33
5214 2024-05-12                      5.33
5215 2024-05-13                      5.33

[5216 rows x 2 columns]
           Date  Interest Rate on Reserve Balances
0    2010-02-01                                0.0
1    2010-02-02                                0.0
2    2010-02-03                                0.0
3    2010-02-04                                0.0
4    2010-02-05                                0.0
...         ...                                ...
5213 2024-05-11                                5.4
5214 2024-05-12                                5.4
5215 2024-05-13                                5.4
5216 2024-05-14                                5.4
5217 2024-05-15                                5.4

[5218 rows x 2 columns]
           Date  Nominal Broad US Dollar Index
0    2010-02-01                        93.7321
1    2010-02-02                        93.4136
2    2010-02-03                        93.6268
3    2010-02-04                        94.1401
4    2010-02-05                        94.6218
...         ...                            ...
3720 2024-05-06                       122.2529
3721 2024-05-07                       122.4588
3722 2024-05-08                       122.5562
3723 2024-05-09                       122.5322
3724 2024-05-10                       122.3898

[3725 rows x 2 columns]
           Date  Inflation Rate
0    2010-02-01        2.460000
1    2010-02-02        2.461111
2    2010-02-03        2.462222
3    2010-02-04        2.463333
4    2010-02-05        2.464444
...         ...             ...
5198 2024-04-26        2.350000
5199 2024-04-27        2.350000
5200 2024-04-28        2.350000
5201 2024-04-29        2.350000
5202 2024-04-30        2.350000

[5203 rows x 2 columns]
           Date  Federal Funds Target Upper Limit
0    2010-02-01                              0.25
1    2010-02-02                              0.25
2    2010-02-03                              0.25
3    2010-02-04                              0.25
4    2010-02-05                              0.25
...         ...                               ...
5213 2024-05-11                              5.50
5214 2024-05-12                              5.50
5215 2024-05-13                              5.50
5216 2024-05-14                              5.50
5217 2024-05-15                              5.50

[5218 rows x 2 columns]
           Date  Federal Funds Target Lower Limit
0    2010-02-01                              0.00
1    2010-02-02                              0.00
2    2010-02-03                              0.00
3    2010-02-04                              0.00
4    2010-02-05                              0.00
...         ...                               ...
5213 2024-05-11                              5.25
5214 2024-05-12                              5.25
5215 2024-05-13                              5.25
5216 2024-05-14                              5.25
5217 2024-05-15                              5.25

[5218 rows x 2 columns]
           Date  \
0    2010-02-01   
1    2010-02-02   
2    2010-02-03   
3    2010-02-04   
4    2010-02-05   
...         ...   
3723 2024-05-09   
3724 2024-05-10   
3725 2024-05-13   
3726 2024-05-14   
3727 2024-05-15   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                  3.58                    
1                                                  3.57                    
2                                                  3.63                    
3                                                  3.53                    
4                                                  3.49                    
...                                                 ...                    
3723                                              -1.01                    
3724                                              -0.97                    
3725                                              -0.97                    
3726                                              -0.99                    
3727                                              -1.09                    

[3728 rows x 2 columns]

In a similar vein, all end dates need to be the same. So set your end date to be the end date from your earliest-ending data.

In [1057]:
# Finding the ending dates for all the indicator data
end_dates = [df['Date'].max() for df in indicators.values()]
print(end_dates)
[Timestamp('2024-05-13 00:00:00'), Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-10 00:00:00'), Timestamp('2024-04-30 00:00:00'), Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-15 00:00:00')]
In [1058]:
# Finding the oldest date from all the ending dates
least_recent_date = end_dates.index(min(end_dates))
print(end_dates[least_recent_date])
2024-04-30 00:00:00
In [1059]:
# Sorting the ending dates to make them easier to read
sorted_dates = sorted(end_dates, reverse=True)
print(sorted_dates)
[Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-15 00:00:00'), Timestamp('2024-05-13 00:00:00'), Timestamp('2024-05-10 00:00:00'), Timestamp('2024-04-30 00:00:00')]
In [1060]:
# Selecting the last date since it is the least recent
least_recent_date = sorted_dates[len(sorted_dates) - 1]
print(least_recent_date)
2024-04-30 00:00:00
In [1061]:
# Cutting off data after the chosen ending date so all the indicators end at the same date
for indicator_tag in indicators:
    df = indicators[indicator_tag]
    # Using data frame short cuts to removes dates for the Date column that come after the specified date
    filtered_df = indicators[indicator_tag][indicators[indicator_tag]['Date'] <= least_recent_date]
    
    # Resetting the index numbers since we deleted some rows
    filtered_df = filtered_df.reset_index(drop=True)
    indicators[indicator_tag] = filtered_df
    
for df in indicators.values():
    print(df)
           Date  Daily Federal Funds Rate
0    2010-02-01                      0.14
1    2010-02-02                      0.14
2    2010-02-03                      0.13
3    2010-02-04                      0.14
4    2010-02-05                      0.13
...         ...                       ...
5198 2024-04-26                      5.33
5199 2024-04-27                      5.33
5200 2024-04-28                      5.33
5201 2024-04-29                      5.33
5202 2024-04-30                      5.33

[5203 rows x 2 columns]
           Date  Interest Rate on Reserve Balances
0    2010-02-01                                0.0
1    2010-02-02                                0.0
2    2010-02-03                                0.0
3    2010-02-04                                0.0
4    2010-02-05                                0.0
...         ...                                ...
5198 2024-04-26                                5.4
5199 2024-04-27                                5.4
5200 2024-04-28                                5.4
5201 2024-04-29                                5.4
5202 2024-04-30                                5.4

[5203 rows x 2 columns]
           Date  Nominal Broad US Dollar Index
0    2010-02-01                        93.7321
1    2010-02-02                        93.4136
2    2010-02-03                        93.6268
3    2010-02-04                        94.1401
4    2010-02-05                        94.6218
...         ...                            ...
3712 2024-04-24                       123.2398
3713 2024-04-25                       123.1916
3714 2024-04-26                       123.3004
3715 2024-04-29                       122.9074
3716 2024-04-30                       123.3446

[3717 rows x 2 columns]
           Date  Inflation Rate
0    2010-02-01        2.460000
1    2010-02-02        2.461111
2    2010-02-03        2.462222
3    2010-02-04        2.463333
4    2010-02-05        2.464444
...         ...             ...
5198 2024-04-26        2.350000
5199 2024-04-27        2.350000
5200 2024-04-28        2.350000
5201 2024-04-29        2.350000
5202 2024-04-30        2.350000

[5203 rows x 2 columns]
           Date  Federal Funds Target Upper Limit
0    2010-02-01                              0.25
1    2010-02-02                              0.25
2    2010-02-03                              0.25
3    2010-02-04                              0.25
4    2010-02-05                              0.25
...         ...                               ...
5198 2024-04-26                              5.50
5199 2024-04-27                              5.50
5200 2024-04-28                              5.50
5201 2024-04-29                              5.50
5202 2024-04-30                              5.50

[5203 rows x 2 columns]
           Date  Federal Funds Target Lower Limit
0    2010-02-01                              0.00
1    2010-02-02                              0.00
2    2010-02-03                              0.00
3    2010-02-04                              0.00
4    2010-02-05                              0.00
...         ...                               ...
5198 2024-04-26                              5.25
5199 2024-04-27                              5.25
5200 2024-04-28                              5.25
5201 2024-04-29                              5.25
5202 2024-04-30                              5.25

[5203 rows x 2 columns]
           Date  \
0    2010-02-01   
1    2010-02-02   
2    2010-02-03   
3    2010-02-04   
4    2010-02-05   
...         ...   
3712 2024-04-24   
3713 2024-04-25   
3714 2024-04-26   
3715 2024-04-29   
3716 2024-04-30   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                  3.58                    
1                                                  3.57                    
2                                                  3.63                    
3                                                  3.53                    
4                                                  3.49                    
...                                                 ...                    
3712                                              -0.81                    
3713                                              -0.77                    
3714                                              -0.79                    
3715                                              -0.82                    
3716                                              -0.77                    

[3717 rows x 2 columns]
In [1062]:
# Removing weekend times from all indicator data
for indicator in indicators:
    indicators[indicator] = indicators[indicator][indicators[indicator]['Date'].dt.dayofweek < 5]
    indicators[indicator] = indicators[indicator].reset_index(drop=True)
    
for df in indicators.values():
    print(df)
           Date  Daily Federal Funds Rate
0    2010-02-01                      0.14
1    2010-02-02                      0.14
2    2010-02-03                      0.13
3    2010-02-04                      0.14
4    2010-02-05                      0.13
...         ...                       ...
3712 2024-04-24                      5.33
3713 2024-04-25                      5.33
3714 2024-04-26                      5.33
3715 2024-04-29                      5.33
3716 2024-04-30                      5.33

[3717 rows x 2 columns]
           Date  Interest Rate on Reserve Balances
0    2010-02-01                                0.0
1    2010-02-02                                0.0
2    2010-02-03                                0.0
3    2010-02-04                                0.0
4    2010-02-05                                0.0
...         ...                                ...
3712 2024-04-24                                5.4
3713 2024-04-25                                5.4
3714 2024-04-26                                5.4
3715 2024-04-29                                5.4
3716 2024-04-30                                5.4

[3717 rows x 2 columns]
           Date  Nominal Broad US Dollar Index
0    2010-02-01                        93.7321
1    2010-02-02                        93.4136
2    2010-02-03                        93.6268
3    2010-02-04                        94.1401
4    2010-02-05                        94.6218
...         ...                            ...
3712 2024-04-24                       123.2398
3713 2024-04-25                       123.1916
3714 2024-04-26                       123.3004
3715 2024-04-29                       122.9074
3716 2024-04-30                       123.3446

[3717 rows x 2 columns]
           Date  Inflation Rate
0    2010-02-01        2.460000
1    2010-02-02        2.461111
2    2010-02-03        2.462222
3    2010-02-04        2.463333
4    2010-02-05        2.464444
...         ...             ...
3712 2024-04-24        2.350000
3713 2024-04-25        2.350000
3714 2024-04-26        2.350000
3715 2024-04-29        2.350000
3716 2024-04-30        2.350000

[3717 rows x 2 columns]
           Date  Federal Funds Target Upper Limit
0    2010-02-01                              0.25
1    2010-02-02                              0.25
2    2010-02-03                              0.25
3    2010-02-04                              0.25
4    2010-02-05                              0.25
...         ...                               ...
3712 2024-04-24                              5.50
3713 2024-04-25                              5.50
3714 2024-04-26                              5.50
3715 2024-04-29                              5.50
3716 2024-04-30                              5.50

[3717 rows x 2 columns]
           Date  Federal Funds Target Lower Limit
0    2010-02-01                              0.00
1    2010-02-02                              0.00
2    2010-02-03                              0.00
3    2010-02-04                              0.00
4    2010-02-05                              0.00
...         ...                               ...
3712 2024-04-24                              5.25
3713 2024-04-25                              5.25
3714 2024-04-26                              5.25
3715 2024-04-29                              5.25
3716 2024-04-30                              5.25

[3717 rows x 2 columns]
           Date  \
0    2010-02-01   
1    2010-02-02   
2    2010-02-03   
3    2010-02-04   
4    2010-02-05   
...         ...   
3712 2024-04-24   
3713 2024-04-25   
3714 2024-04-26   
3715 2024-04-29   
3716 2024-04-30   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                  3.58                    
1                                                  3.57                    
2                                                  3.63                    
3                                                  3.53                    
4                                                  3.49                    
...                                                 ...                    
3712                                              -0.81                    
3713                                              -0.77                    
3714                                              -0.79                    
3715                                              -0.82                    
3716                                              -0.77                    

[3717 rows x 2 columns]
In [1063]:
# Combining all the indicators into a single data frame since they have consistent Dates
indicator_df = indicators['ffer']
for indicator_tag in indicators:
    if indicator_tag != 'ffer':
        indicator_df = pd.merge(indicator_df, indicators[indicator_tag], on='Date')
print(indicator_df.head(30))
         Date  Daily Federal Funds Rate  Interest Rate on Reserve Balances  \
0  2010-02-01                      0.14                                0.0   
1  2010-02-02                      0.14                                0.0   
2  2010-02-03                      0.13                                0.0   
3  2010-02-04                      0.14                                0.0   
4  2010-02-05                      0.13                                0.0   
5  2010-02-08                      0.13                                0.0   
6  2010-02-09                      0.13                                0.0   
7  2010-02-10                      0.12                                0.0   
8  2010-02-11                      0.12                                0.0   
9  2010-02-12                      0.12                                0.0   
10 2010-02-15                      0.12                                0.0   
11 2010-02-16                      0.13                                0.0   
12 2010-02-17                      0.12                                0.0   
13 2010-02-18                      0.12                                0.0   
14 2010-02-19                      0.13                                0.0   
15 2010-02-22                      0.12                                0.0   
16 2010-02-23                      0.12                                0.0   
17 2010-02-24                      0.11                                0.0   
18 2010-02-25                      0.12                                0.0   
19 2010-02-26                      0.13                                0.0   
20 2010-03-01                      0.14                                0.0   
21 2010-03-02                      0.14                                0.0   
22 2010-03-03                      0.15                                0.0   
23 2010-03-04                      0.16                                0.0   
24 2010-03-05                      0.17                                0.0   
25 2010-03-08                      0.15                                0.0   
26 2010-03-09                      0.14                                0.0   
27 2010-03-10                      0.14                                0.0   
28 2010-03-11                      0.15                                0.0   
29 2010-03-12                      0.17                                0.0   

    Nominal Broad US Dollar Index  Inflation Rate  \
0                        93.73210        2.460000   
1                        93.41360        2.461111   
2                        93.62680        2.462222   
3                        94.14010        2.463333   
4                        94.62180        2.464444   
5                        94.49696        2.467778   
6                        94.37212        2.468889   
7                        94.24728        2.470000   
8                        94.12244        2.471111   
9                        93.99760        2.472222   
10                       93.73980        2.475556   
11                       93.48200        2.476667   
12                       93.71710        2.477778   
13                       93.87520        2.478889   
14                       93.95690        2.480000   
15                       93.74020        2.483333   
16                       93.97940        2.484444   
17                       93.97750        2.485556   
18                       94.37970        2.486667   
19                       93.66020        2.487778   
20                       93.79790        2.490000   
21                       93.48800        2.495000   
22                       92.98610        2.500000   
23                       93.40790        2.505000   
24                       93.26230        2.510000   
25                       93.24460        2.525000   
26                       93.19410        2.530000   
27                       93.04260        2.535000   
28                       93.05330        2.540000   
29                       92.66160        2.545000   

    Federal Funds Target Upper Limit  Federal Funds Target Lower Limit  \
0                               0.25                               0.0   
1                               0.25                               0.0   
2                               0.25                               0.0   
3                               0.25                               0.0   
4                               0.25                               0.0   
5                               0.25                               0.0   
6                               0.25                               0.0   
7                               0.25                               0.0   
8                               0.25                               0.0   
9                               0.25                               0.0   
10                              0.25                               0.0   
11                              0.25                               0.0   
12                              0.25                               0.0   
13                              0.25                               0.0   
14                              0.25                               0.0   
15                              0.25                               0.0   
16                              0.25                               0.0   
17                              0.25                               0.0   
18                              0.25                               0.0   
19                              0.25                               0.0   
20                              0.25                               0.0   
21                              0.25                               0.0   
22                              0.25                               0.0   
23                              0.25                               0.0   
24                              0.25                               0.0   
25                              0.25                               0.0   
26                              0.25                               0.0   
27                              0.25                               0.0   
28                              0.25                               0.0   
29                              0.25                               0.0   

    Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                               3.580                    
1                                               3.570                    
2                                               3.630                    
3                                               3.530                    
4                                               3.490                    
5                                               3.500                    
6                                               3.550                    
7                                               3.610                    
8                                               3.620                    
9                                               3.590                    
10                                              3.575                    
11                                              3.560                    
12                                              3.640                    
13                                              3.690                    
14                                              3.670                    
15                                              3.690                    
16                                              3.570                    
17                                              3.580                    
18                                              3.510                    
19                                              3.480                    
20                                              3.480                    
21                                              3.480                    
22                                              3.490                    
23                                              3.470                    
24                                              3.540                    
25                                              3.560                    
26                                              3.550                    
27                                              3.580                    
28                                              3.570                    
29                                              3.560                    

Start processing of funds

In [1064]:
# Moving Date information to its own column
for index_tag in index_dfs:
    index_dfs[index_tag] = index_dfs[index_tag].reset_index()
    
for df in index_dfs.values():
    print(df)
           index   1. open   2. high    3. low  4. close 5. volume
0     2024-05-17  528.8100  529.5200  527.3200  529.4500  59187585
1     2024-05-16  529.8800  531.5218  528.5400  528.6900  50244827
2     2024-05-15  525.8300  530.0800  525.1800  529.7800  59504897
3     2024-05-14  521.1100  523.8300  520.5600  523.3000  57535867
4     2024-05-13  522.5600  522.6700  519.7400  520.9100  36716361
...          ...       ...       ...       ...       ...       ...
6171  1999-11-05  138.6250  139.1093  136.7812  137.8750   7431500
6172  1999-11-04  136.7500  137.3593  135.7656  136.5312   7907500
6173  1999-11-03  136.0000  136.3750  135.1250  135.5000   7222300
6174  1999-11-02  135.9687  137.2500  134.5937  134.5937   6516900
6175  1999-11-01  136.5000  137.0000  135.5625  135.5625   4006500

[6176 rows x 6 columns]
           index   1. open   2. high    3. low  4. close 5. volume
0     2024-05-17  452.1100  452.7200  449.5399  451.7600  35803719
1     2024-05-16  452.7100  454.6900  451.8100  451.9800  34780412
2     2024-05-15  448.4300  453.1500  446.9000  452.9000  41464651
3     2024-05-14  442.6500  446.4650  442.4600  445.9300  34478321
4     2024-05-13  443.9900  444.0900  441.6500  443.0800  22994192
...          ...       ...       ...       ...       ...       ...
6171  1999-11-05  137.8000  138.4000  136.4000  136.4000   7567300
6172  1999-11-04  135.4000  135.6000  133.6000  135.0000  10024300
6173  1999-11-03  132.8000  134.3000  132.4000  133.5000   9376300
6174  1999-11-02  131.5000  133.1000  130.4000  130.9000   6417400
6175  1999-11-01  131.5000  133.1000  130.6000  130.8000   4840900

[6176 rows x 6 columns]
           index   1. open   2. high    3. low  4. close 5. volume
0     2024-05-17  486.0900  486.7300  484.7000  486.6900   3274035
1     2024-05-16  487.0500  488.5700  485.8300  485.9700   3347381
2     2024-05-15  483.3400  487.2300  482.7350  486.9000   4399485
3     2024-05-14  478.9800  481.4700  478.4800  481.0400   3257724
4     2024-05-13  480.3500  480.4200  477.7300  478.7700   3108442
...          ...       ...       ...       ...       ...       ...
3441  2010-09-15   51.3100   51.6900   51.2000   51.6500     18400
3442  2010-09-14   51.4200   51.7400   51.1900   51.5190    118800
3443  2010-09-13   51.4800   51.5700   51.2500   51.5300     67400
3444  2010-09-10   50.8400   50.9300   50.6480   50.8900     17200
3445  2010-09-09   51.2500   51.2500   50.5700   50.6600     53000

[3446 rows x 6 columns]
           index   1. open   2. high    3. low  4. close 5. volume
0     2024-05-17  531.4500  532.1700  529.9450  532.1300   4234595
1     2024-05-16  532.5300  534.1800  531.1700  531.2300   5526537
2     2024-05-15  528.5100  532.7400  527.8245  532.4800   3568824
3     2024-05-14  523.7000  526.4250  523.1700  525.9600   3288312
4     2024-05-13  525.2000  525.2700  522.3800  523.5700   2566804
...          ...       ...       ...       ...       ...       ...
6032  2000-05-25  140.0000  140.9000  137.9000  138.5000     69600
6033  2000-05-24  137.8000  140.1000  136.7000  139.8000    400300
6034  2000-05-23  140.2000  140.2000  137.7000  137.7000    373900
6035  2000-05-22  140.6000  140.6000  136.8000  139.8000   1850600
6036  2000-05-19  142.7000  142.7000  140.3000  140.7000    775500

[6037 rows x 6 columns]
           index   1. open   2. high    3. low  4. close 5. volume
0     2024-05-17  262.1500  262.3000  261.2400  262.3000   2208726
1     2024-05-16  262.6800  263.2800  261.8600  261.9300   2444983
2     2024-05-15  260.8500  262.7300  260.4428  262.6400   2508701
3     2024-05-14  258.2300  259.6700  258.0830  259.4500   2466842
4     2024-05-13  259.0800  259.0800  257.5600  258.1900   1948407
...          ...       ...       ...       ...       ...       ...
5773  2001-06-06  117.5000  117.8000  116.7000  116.8000    278500
5774  2001-06-05  116.4000  118.0000  116.4000  117.8000    562400
5775  2001-06-04  116.1000  116.2000  115.3000  116.1000   1018200
5776  2001-06-01  115.1000  115.9000  114.4000  115.6000   2542200
5777  2001-05-31  114.5000  115.5000  114.5000  114.8000   2457200

[5778 rows x 6 columns]
In [1065]:
# Renaming all index fund data frame columns to be readable and logical
for df in index_dfs.values():
    df.rename(columns={"index": "Date", "1. open": "open", "2. high": "high", "3. low": "low", "4. close": "close", "5. volume": "volume"}, inplace=True)
    
for df in index_dfs.values():
    print(df)
            Date      open      high       low     close    volume
0     2024-05-17  528.8100  529.5200  527.3200  529.4500  59187585
1     2024-05-16  529.8800  531.5218  528.5400  528.6900  50244827
2     2024-05-15  525.8300  530.0800  525.1800  529.7800  59504897
3     2024-05-14  521.1100  523.8300  520.5600  523.3000  57535867
4     2024-05-13  522.5600  522.6700  519.7400  520.9100  36716361
...          ...       ...       ...       ...       ...       ...
6171  1999-11-05  138.6250  139.1093  136.7812  137.8750   7431500
6172  1999-11-04  136.7500  137.3593  135.7656  136.5312   7907500
6173  1999-11-03  136.0000  136.3750  135.1250  135.5000   7222300
6174  1999-11-02  135.9687  137.2500  134.5937  134.5937   6516900
6175  1999-11-01  136.5000  137.0000  135.5625  135.5625   4006500

[6176 rows x 6 columns]
            Date      open      high       low     close    volume
0     2024-05-17  452.1100  452.7200  449.5399  451.7600  35803719
1     2024-05-16  452.7100  454.6900  451.8100  451.9800  34780412
2     2024-05-15  448.4300  453.1500  446.9000  452.9000  41464651
3     2024-05-14  442.6500  446.4650  442.4600  445.9300  34478321
4     2024-05-13  443.9900  444.0900  441.6500  443.0800  22994192
...          ...       ...       ...       ...       ...       ...
6171  1999-11-05  137.8000  138.4000  136.4000  136.4000   7567300
6172  1999-11-04  135.4000  135.6000  133.6000  135.0000  10024300
6173  1999-11-03  132.8000  134.3000  132.4000  133.5000   9376300
6174  1999-11-02  131.5000  133.1000  130.4000  130.9000   6417400
6175  1999-11-01  131.5000  133.1000  130.6000  130.8000   4840900

[6176 rows x 6 columns]
            Date      open      high       low     close   volume
0     2024-05-17  486.0900  486.7300  484.7000  486.6900  3274035
1     2024-05-16  487.0500  488.5700  485.8300  485.9700  3347381
2     2024-05-15  483.3400  487.2300  482.7350  486.9000  4399485
3     2024-05-14  478.9800  481.4700  478.4800  481.0400  3257724
4     2024-05-13  480.3500  480.4200  477.7300  478.7700  3108442
...          ...       ...       ...       ...       ...      ...
3441  2010-09-15   51.3100   51.6900   51.2000   51.6500    18400
3442  2010-09-14   51.4200   51.7400   51.1900   51.5190   118800
3443  2010-09-13   51.4800   51.5700   51.2500   51.5300    67400
3444  2010-09-10   50.8400   50.9300   50.6480   50.8900    17200
3445  2010-09-09   51.2500   51.2500   50.5700   50.6600    53000

[3446 rows x 6 columns]
            Date      open      high       low     close   volume
0     2024-05-17  531.4500  532.1700  529.9450  532.1300  4234595
1     2024-05-16  532.5300  534.1800  531.1700  531.2300  5526537
2     2024-05-15  528.5100  532.7400  527.8245  532.4800  3568824
3     2024-05-14  523.7000  526.4250  523.1700  525.9600  3288312
4     2024-05-13  525.2000  525.2700  522.3800  523.5700  2566804
...          ...       ...       ...       ...       ...      ...
6032  2000-05-25  140.0000  140.9000  137.9000  138.5000    69600
6033  2000-05-24  137.8000  140.1000  136.7000  139.8000   400300
6034  2000-05-23  140.2000  140.2000  137.7000  137.7000   373900
6035  2000-05-22  140.6000  140.6000  136.8000  139.8000  1850600
6036  2000-05-19  142.7000  142.7000  140.3000  140.7000   775500

[6037 rows x 6 columns]
            Date      open      high       low     close   volume
0     2024-05-17  262.1500  262.3000  261.2400  262.3000  2208726
1     2024-05-16  262.6800  263.2800  261.8600  261.9300  2444983
2     2024-05-15  260.8500  262.7300  260.4428  262.6400  2508701
3     2024-05-14  258.2300  259.6700  258.0830  259.4500  2466842
4     2024-05-13  259.0800  259.0800  257.5600  258.1900  1948407
...          ...       ...       ...       ...       ...      ...
5773  2001-06-06  117.5000  117.8000  116.7000  116.8000   278500
5774  2001-06-05  116.4000  118.0000  116.4000  117.8000   562400
5775  2001-06-04  116.1000  116.2000  115.3000  116.1000  1018200
5776  2001-06-01  115.1000  115.9000  114.4000  115.6000  2542200
5777  2001-05-31  114.5000  115.5000  114.5000  114.8000  2457200

[5778 rows x 6 columns]
In [1066]:
# Converting str Dates to datetime type
for index_tag in index_dfs:
    index_dfs[index_tag]['Date'] = pd.to_datetime(index_dfs[index_tag]['Date'])
In [1067]:
# Converting non numerics to be numeric or NaN
for index_tag in index_dfs:
    cols_to_convert = index_dfs[index_tag].columns.drop('Date')
    index_dfs[index_tag][cols_to_convert] = index_dfs[index_tag][cols_to_convert].apply(pd.to_numeric, errors='coerce')

for df in index_dfs.values():
    print(df)

# Filling NaN values by interpolating like with the indicator data
for index_tag in index_dfs:
    index_dfs[index_tag] = index_dfs[index_tag].interpolate(method='linear', limit_direction='forward', axis=0)
    
for df in index_dfs.values():
    print(df)
           Date      open      high       low     close    volume
0    2024-05-17  528.8100  529.5200  527.3200  529.4500  59187585
1    2024-05-16  529.8800  531.5218  528.5400  528.6900  50244827
2    2024-05-15  525.8300  530.0800  525.1800  529.7800  59504897
3    2024-05-14  521.1100  523.8300  520.5600  523.3000  57535867
4    2024-05-13  522.5600  522.6700  519.7400  520.9100  36716361
...         ...       ...       ...       ...       ...       ...
6171 1999-11-05  138.6250  139.1093  136.7812  137.8750   7431500
6172 1999-11-04  136.7500  137.3593  135.7656  136.5312   7907500
6173 1999-11-03  136.0000  136.3750  135.1250  135.5000   7222300
6174 1999-11-02  135.9687  137.2500  134.5937  134.5937   6516900
6175 1999-11-01  136.5000  137.0000  135.5625  135.5625   4006500

[6176 rows x 6 columns]
           Date    open     high       low   close    volume
0    2024-05-17  452.11  452.720  449.5399  451.76  35803719
1    2024-05-16  452.71  454.690  451.8100  451.98  34780412
2    2024-05-15  448.43  453.150  446.9000  452.90  41464651
3    2024-05-14  442.65  446.465  442.4600  445.93  34478321
4    2024-05-13  443.99  444.090  441.6500  443.08  22994192
...         ...     ...      ...       ...     ...       ...
6171 1999-11-05  137.80  138.400  136.4000  136.40   7567300
6172 1999-11-04  135.40  135.600  133.6000  135.00  10024300
6173 1999-11-03  132.80  134.300  132.4000  133.50   9376300
6174 1999-11-02  131.50  133.100  130.4000  130.90   6417400
6175 1999-11-01  131.50  133.100  130.6000  130.80   4840900

[6176 rows x 6 columns]
           Date    open    high      low    close   volume
0    2024-05-17  486.09  486.73  484.700  486.690  3274035
1    2024-05-16  487.05  488.57  485.830  485.970  3347381
2    2024-05-15  483.34  487.23  482.735  486.900  4399485
3    2024-05-14  478.98  481.47  478.480  481.040  3257724
4    2024-05-13  480.35  480.42  477.730  478.770  3108442
...         ...     ...     ...      ...      ...      ...
3441 2010-09-15   51.31   51.69   51.200   51.650    18400
3442 2010-09-14   51.42   51.74   51.190   51.519   118800
3443 2010-09-13   51.48   51.57   51.250   51.530    67400
3444 2010-09-10   50.84   50.93   50.648   50.890    17200
3445 2010-09-09   51.25   51.25   50.570   50.660    53000

[3446 rows x 6 columns]
           Date    open     high       low   close   volume
0    2024-05-17  531.45  532.170  529.9450  532.13  4234595
1    2024-05-16  532.53  534.180  531.1700  531.23  5526537
2    2024-05-15  528.51  532.740  527.8245  532.48  3568824
3    2024-05-14  523.70  526.425  523.1700  525.96  3288312
4    2024-05-13  525.20  525.270  522.3800  523.57  2566804
...         ...     ...      ...       ...     ...      ...
6032 2000-05-25  140.00  140.900  137.9000  138.50    69600
6033 2000-05-24  137.80  140.100  136.7000  139.80   400300
6034 2000-05-23  140.20  140.200  137.7000  137.70   373900
6035 2000-05-22  140.60  140.600  136.8000  139.80  1850600
6036 2000-05-19  142.70  142.700  140.3000  140.70   775500

[6037 rows x 6 columns]
           Date    open    high       low   close   volume
0    2024-05-17  262.15  262.30  261.2400  262.30  2208726
1    2024-05-16  262.68  263.28  261.8600  261.93  2444983
2    2024-05-15  260.85  262.73  260.4428  262.64  2508701
3    2024-05-14  258.23  259.67  258.0830  259.45  2466842
4    2024-05-13  259.08  259.08  257.5600  258.19  1948407
...         ...     ...     ...       ...     ...      ...
5773 2001-06-06  117.50  117.80  116.7000  116.80   278500
5774 2001-06-05  116.40  118.00  116.4000  117.80   562400
5775 2001-06-04  116.10  116.20  115.3000  116.10  1018200
5776 2001-06-01  115.10  115.90  114.4000  115.60  2542200
5777 2001-05-31  114.50  115.50  114.5000  114.80  2457200

[5778 rows x 6 columns]
           Date      open      high       low     close    volume
0    2024-05-17  528.8100  529.5200  527.3200  529.4500  59187585
1    2024-05-16  529.8800  531.5218  528.5400  528.6900  50244827
2    2024-05-15  525.8300  530.0800  525.1800  529.7800  59504897
3    2024-05-14  521.1100  523.8300  520.5600  523.3000  57535867
4    2024-05-13  522.5600  522.6700  519.7400  520.9100  36716361
...         ...       ...       ...       ...       ...       ...
6171 1999-11-05  138.6250  139.1093  136.7812  137.8750   7431500
6172 1999-11-04  136.7500  137.3593  135.7656  136.5312   7907500
6173 1999-11-03  136.0000  136.3750  135.1250  135.5000   7222300
6174 1999-11-02  135.9687  137.2500  134.5937  134.5937   6516900
6175 1999-11-01  136.5000  137.0000  135.5625  135.5625   4006500

[6176 rows x 6 columns]
           Date    open     high       low   close    volume
0    2024-05-17  452.11  452.720  449.5399  451.76  35803719
1    2024-05-16  452.71  454.690  451.8100  451.98  34780412
2    2024-05-15  448.43  453.150  446.9000  452.90  41464651
3    2024-05-14  442.65  446.465  442.4600  445.93  34478321
4    2024-05-13  443.99  444.090  441.6500  443.08  22994192
...         ...     ...      ...       ...     ...       ...
6171 1999-11-05  137.80  138.400  136.4000  136.40   7567300
6172 1999-11-04  135.40  135.600  133.6000  135.00  10024300
6173 1999-11-03  132.80  134.300  132.4000  133.50   9376300
6174 1999-11-02  131.50  133.100  130.4000  130.90   6417400
6175 1999-11-01  131.50  133.100  130.6000  130.80   4840900

[6176 rows x 6 columns]
           Date    open    high      low    close   volume
0    2024-05-17  486.09  486.73  484.700  486.690  3274035
1    2024-05-16  487.05  488.57  485.830  485.970  3347381
2    2024-05-15  483.34  487.23  482.735  486.900  4399485
3    2024-05-14  478.98  481.47  478.480  481.040  3257724
4    2024-05-13  480.35  480.42  477.730  478.770  3108442
...         ...     ...     ...      ...      ...      ...
3441 2010-09-15   51.31   51.69   51.200   51.650    18400
3442 2010-09-14   51.42   51.74   51.190   51.519   118800
3443 2010-09-13   51.48   51.57   51.250   51.530    67400
3444 2010-09-10   50.84   50.93   50.648   50.890    17200
3445 2010-09-09   51.25   51.25   50.570   50.660    53000

[3446 rows x 6 columns]
           Date    open     high       low   close   volume
0    2024-05-17  531.45  532.170  529.9450  532.13  4234595
1    2024-05-16  532.53  534.180  531.1700  531.23  5526537
2    2024-05-15  528.51  532.740  527.8245  532.48  3568824
3    2024-05-14  523.70  526.425  523.1700  525.96  3288312
4    2024-05-13  525.20  525.270  522.3800  523.57  2566804
...         ...     ...      ...       ...     ...      ...
6032 2000-05-25  140.00  140.900  137.9000  138.50    69600
6033 2000-05-24  137.80  140.100  136.7000  139.80   400300
6034 2000-05-23  140.20  140.200  137.7000  137.70   373900
6035 2000-05-22  140.60  140.600  136.8000  139.80  1850600
6036 2000-05-19  142.70  142.700  140.3000  140.70   775500

[6037 rows x 6 columns]
           Date    open    high       low   close   volume
0    2024-05-17  262.15  262.30  261.2400  262.30  2208726
1    2024-05-16  262.68  263.28  261.8600  261.93  2444983
2    2024-05-15  260.85  262.73  260.4428  262.64  2508701
3    2024-05-14  258.23  259.67  258.0830  259.45  2466842
4    2024-05-13  259.08  259.08  257.5600  258.19  1948407
...         ...     ...     ...       ...     ...      ...
5773 2001-06-06  117.50  117.80  116.7000  116.80   278500
5774 2001-06-05  116.40  118.00  116.4000  117.80   562400
5775 2001-06-04  116.10  116.20  115.3000  116.10  1018200
5776 2001-06-01  115.10  115.90  114.4000  115.60  2542200
5777 2001-05-31  114.50  115.50  114.5000  114.80  2457200

[5778 rows x 6 columns]
In [1068]:
# Following the same process to determine the starting and ending dates to cut the index funds from
starting_dates = [df['Date'].min() for df in index_dfs.values()]

most_recent_date = starting_dates.index(max(starting_dates))

sorted_dates = sorted(starting_dates, reverse=True)

most_recent_date = sorted_dates[0]

for index_tag in index_dfs:
    df = index_dfs[index_tag]
    filtered_df = index_dfs[index_tag][index_dfs[index_tag]['Date'] >= most_recent_date]
    filtered_df = filtered_df.reset_index(drop=True)
    index_dfs[index_tag] = filtered_df

end_dates = [df['Date'].max() for df in index_dfs.values()]

least_recent_date = end_dates.index(min(end_dates))

sorted_dates = sorted(end_dates, reverse=True)

least_recent_date = sorted_dates[len(sorted_dates) - 1]

for index_tag in index_dfs:
    df = index_dfs[index_tag]
    filtered_df = index_dfs[index_tag][index_dfs[index_tag]['Date'] <= least_recent_date]
    filtered_df = filtered_df.reset_index(drop=True)
    index_dfs[index_tag] = filtered_df
    
for df in index_dfs.values():
    print(df)
           Date    open      high     low   close     volume
0    2024-05-17  528.81  529.5200  527.32  529.45   59187585
1    2024-05-16  529.88  531.5218  528.54  528.69   50244827
2    2024-05-15  525.83  530.0800  525.18  529.78   59504897
3    2024-05-14  521.11  523.8300  520.56  523.30   57535867
4    2024-05-13  522.56  522.6700  519.74  520.91   36716361
...         ...     ...       ...     ...     ...        ...
3441 2010-09-15  112.32  113.2100  111.98  113.08  168413600
3442 2010-09-14  112.50  113.2900  112.08  112.65  209339106
3443 2010-09-13  112.58  112.9500  112.13  112.72  177874202
3444 2010-09-10  111.12  111.6100  110.87  111.48  127752166
3445 2010-09-09  111.65  111.6800  110.62  110.92  146442924

[3446 rows x 6 columns]
           Date      open     high       low   close    volume
0    2024-05-17  452.1100  452.720  449.5399  451.76  35803719
1    2024-05-16  452.7100  454.690  451.8100  451.98  34780412
2    2024-05-15  448.4300  453.150  446.9000  452.90  41464651
3    2024-05-14  442.6500  446.465  442.4600  445.93  34478321
4    2024-05-13  443.9900  444.090  441.6500  443.08  22994192
...         ...       ...      ...       ...     ...       ...
3441 2010-09-15   47.3500   47.800   47.1900   47.75  67108200
3442 2010-09-14   47.1700   47.700   47.0800   47.45  91405800
3443 2010-09-13   46.9500   47.370   46.9400   47.25  64523400
3444 2010-09-10   46.4900   46.670   46.2500   46.60  66995700
3445 2010-09-09   46.6076   46.700   46.3200   46.43  61476400

[3446 rows x 6 columns]
           Date    open    high      low    close   volume
0    2024-05-17  486.09  486.73  484.700  486.690  3274035
1    2024-05-16  487.05  488.57  485.830  485.970  3347381
2    2024-05-15  483.34  487.23  482.735  486.900  4399485
3    2024-05-14  478.98  481.47  478.480  481.040  3257724
4    2024-05-13  480.35  480.42  477.730  478.770  3108442
...         ...     ...     ...      ...      ...      ...
3441 2010-09-15   51.31   51.69   51.200   51.650    18400
3442 2010-09-14   51.42   51.74   51.190   51.519   118800
3443 2010-09-13   51.48   51.57   51.250   51.530    67400
3444 2010-09-10   50.84   50.93   50.648   50.890    17200
3445 2010-09-09   51.25   51.25   50.570   50.660    53000

[3446 rows x 6 columns]
           Date    open      high       low   close   volume
0    2024-05-17  531.45  532.1700  529.9450  532.13  4234595
1    2024-05-16  532.53  534.1800  531.1700  531.23  5526537
2    2024-05-15  528.51  532.7400  527.8245  532.48  3568824
3    2024-05-14  523.70  526.4250  523.1700  525.96  3288312
4    2024-05-13  525.20  525.2700  522.3800  523.57  2566804
...         ...     ...       ...       ...     ...      ...
3441 2010-09-15  112.73  113.6000  112.3900  113.49  2943400
3442 2010-09-14  112.94  113.7100  112.4800  113.07  2233200
3443 2010-09-13  112.99  113.3474  112.5500  113.16  1964400
3444 2010-09-10  111.53  112.0000  111.2600  111.93  1789100
3445 2010-09-09  112.06  112.0700  111.0200  111.30  1601600

[3446 rows x 6 columns]
           Date    open    high       low   close   volume
0    2024-05-17  262.15  262.30  261.2400  262.30  2208726
1    2024-05-16  262.68  263.28  261.8600  261.93  2444983
2    2024-05-15  260.85  262.73  260.4428  262.64  2508701
3    2024-05-14  258.23  259.67  258.0830  259.45  2466842
4    2024-05-13  259.08  259.08  257.5600  258.19  1948407
...         ...     ...     ...       ...     ...      ...
3441 2010-09-15   57.19   57.67   57.0300   57.59  1513700
3442 2010-09-14   57.30   57.72   57.0900   57.40  1262900
3443 2010-09-13   57.28   57.49   57.1200   57.41  1167500
3444 2010-09-10   56.57   56.78   56.4240   56.69   706800
3445 2010-09-09   56.78   56.90   56.2810   56.45  1433300

[3446 rows x 6 columns]
In [1069]:
# Pulling only Date and closing price information from each index fund
for index_tag in index_dfs:
    index_dfs[index_tag] = index_dfs[index_tag][['Date', 'close']]
    
for df in index_dfs.values():
    print(df)
           Date   close
0    2024-05-17  529.45
1    2024-05-16  528.69
2    2024-05-15  529.78
3    2024-05-14  523.30
4    2024-05-13  520.91
...         ...     ...
3441 2010-09-15  113.08
3442 2010-09-14  112.65
3443 2010-09-13  112.72
3444 2010-09-10  111.48
3445 2010-09-09  110.92

[3446 rows x 2 columns]
           Date   close
0    2024-05-17  451.76
1    2024-05-16  451.98
2    2024-05-15  452.90
3    2024-05-14  445.93
4    2024-05-13  443.08
...         ...     ...
3441 2010-09-15   47.75
3442 2010-09-14   47.45
3443 2010-09-13   47.25
3444 2010-09-10   46.60
3445 2010-09-09   46.43

[3446 rows x 2 columns]
           Date    close
0    2024-05-17  486.690
1    2024-05-16  485.970
2    2024-05-15  486.900
3    2024-05-14  481.040
4    2024-05-13  478.770
...         ...      ...
3441 2010-09-15   51.650
3442 2010-09-14   51.519
3443 2010-09-13   51.530
3444 2010-09-10   50.890
3445 2010-09-09   50.660

[3446 rows x 2 columns]
           Date   close
0    2024-05-17  532.13
1    2024-05-16  531.23
2    2024-05-15  532.48
3    2024-05-14  525.96
4    2024-05-13  523.57
...         ...     ...
3441 2010-09-15  113.49
3442 2010-09-14  113.07
3443 2010-09-13  113.16
3444 2010-09-10  111.93
3445 2010-09-09  111.30

[3446 rows x 2 columns]
           Date   close
0    2024-05-17  262.30
1    2024-05-16  261.93
2    2024-05-15  262.64
3    2024-05-14  259.45
4    2024-05-13  258.19
...         ...     ...
3441 2010-09-15   57.59
3442 2010-09-14   57.40
3443 2010-09-13   57.41
3444 2010-09-10   56.69
3445 2010-09-09   56.45

[3446 rows x 2 columns]
In [1070]:
# Renaming each index funds close column to be the name of the index fund
for index_tag in index_dfs:
    index_dfs[index_tag].rename(columns={"close": index_tag}, inplace=True)

for df in index_dfs.values():
    print(df)
           Date     SPY
0    2024-05-17  529.45
1    2024-05-16  528.69
2    2024-05-15  529.78
3    2024-05-14  523.30
4    2024-05-13  520.91
...         ...     ...
3441 2010-09-15  113.08
3442 2010-09-14  112.65
3443 2010-09-13  112.72
3444 2010-09-10  111.48
3445 2010-09-09  110.92

[3446 rows x 2 columns]
           Date     QQQ
0    2024-05-17  451.76
1    2024-05-16  451.98
2    2024-05-15  452.90
3    2024-05-14  445.93
4    2024-05-13  443.08
...         ...     ...
3441 2010-09-15   47.75
3442 2010-09-14   47.45
3443 2010-09-13   47.25
3444 2010-09-10   46.60
3445 2010-09-09   46.43

[3446 rows x 2 columns]
           Date      VOO
0    2024-05-17  486.690
1    2024-05-16  485.970
2    2024-05-15  486.900
3    2024-05-14  481.040
4    2024-05-13  478.770
...         ...      ...
3441 2010-09-15   51.650
3442 2010-09-14   51.519
3443 2010-09-13   51.530
3444 2010-09-10   50.890
3445 2010-09-09   50.660

[3446 rows x 2 columns]
           Date     IVV
0    2024-05-17  532.13
1    2024-05-16  531.23
2    2024-05-15  532.48
3    2024-05-14  525.96
4    2024-05-13  523.57
...         ...     ...
3441 2010-09-15  113.49
3442 2010-09-14  113.07
3443 2010-09-13  113.16
3444 2010-09-10  111.93
3445 2010-09-09  111.30

[3446 rows x 2 columns]
           Date     VTI
0    2024-05-17  262.30
1    2024-05-16  261.93
2    2024-05-15  262.64
3    2024-05-14  259.45
4    2024-05-13  258.19
...         ...     ...
3441 2010-09-15   57.59
3442 2010-09-14   57.40
3443 2010-09-13   57.41
3444 2010-09-10   56.69
3445 2010-09-09   56.45

[3446 rows x 2 columns]
C:\Users\Trevor\AppData\Local\Temp\ipykernel_34916\376391890.py:3: SettingWithCopyWarning: 
A value is trying to be set on a copy of a slice from a DataFrame

See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
  index_dfs[index_tag].rename(columns={"close": index_tag}, inplace=True)
In [1071]:
# Combining the 5 index fund data frames into a single data frame
index_df = index_dfs['SPY']
for index_tag in index_dfs:
    if index_tag != 'SPY':
        index_df = pd.merge(index_df, index_dfs[index_tag], on='Date')
print(index_df)
           Date     SPY     QQQ      VOO     IVV     VTI
0    2024-05-17  529.45  451.76  486.690  532.13  262.30
1    2024-05-16  528.69  451.98  485.970  531.23  261.93
2    2024-05-15  529.78  452.90  486.900  532.48  262.64
3    2024-05-14  523.30  445.93  481.040  525.96  259.45
4    2024-05-13  520.91  443.08  478.770  523.57  258.19
...         ...     ...     ...      ...     ...     ...
3441 2010-09-15  113.08   47.75   51.650  113.49   57.59
3442 2010-09-14  112.65   47.45   51.519  113.07   57.40
3443 2010-09-13  112.72   47.25   51.530  113.16   57.41
3444 2010-09-10  111.48   46.60   50.890  111.93   56.69
3445 2010-09-09  110.92   46.43   50.660  111.30   56.45

[3446 rows x 6 columns]
In [1072]:
# Reversing the rows of the index fund data frame so it is in the same order as the indicator data
index_df = index_df.iloc[::-1].reset_index(drop=True)
print(index_df)
           Date     SPY     QQQ      VOO     IVV     VTI
0    2010-09-09  110.92   46.43   50.660  111.30   56.45
1    2010-09-10  111.48   46.60   50.890  111.93   56.69
2    2010-09-13  112.72   47.25   51.530  113.16   57.41
3    2010-09-14  112.65   47.45   51.519  113.07   57.40
4    2010-09-15  113.08   47.75   51.650  113.49   57.59
...         ...     ...     ...      ...     ...     ...
3441 2024-05-13  520.91  443.08  478.770  523.57  258.19
3442 2024-05-14  523.30  445.93  481.040  525.96  259.45
3443 2024-05-15  529.78  452.90  486.900  532.48  262.64
3444 2024-05-16  528.69  451.98  485.970  531.23  261.93
3445 2024-05-17  529.45  451.76  486.690  532.13  262.30

[3446 rows x 6 columns]
In [1073]:
print(index_df)
print(indicator_df)
           Date     SPY     QQQ      VOO     IVV     VTI
0    2010-09-09  110.92   46.43   50.660  111.30   56.45
1    2010-09-10  111.48   46.60   50.890  111.93   56.69
2    2010-09-13  112.72   47.25   51.530  113.16   57.41
3    2010-09-14  112.65   47.45   51.519  113.07   57.40
4    2010-09-15  113.08   47.75   51.650  113.49   57.59
...         ...     ...     ...      ...     ...     ...
3441 2024-05-13  520.91  443.08  478.770  523.57  258.19
3442 2024-05-14  523.30  445.93  481.040  525.96  259.45
3443 2024-05-15  529.78  452.90  486.900  532.48  262.64
3444 2024-05-16  528.69  451.98  485.970  531.23  261.93
3445 2024-05-17  529.45  451.76  486.690  532.13  262.30

[3446 rows x 6 columns]
           Date  Daily Federal Funds Rate  Interest Rate on Reserve Balances  \
0    2010-02-01                      0.14                                0.0   
1    2010-02-02                      0.14                                0.0   
2    2010-02-03                      0.13                                0.0   
3    2010-02-04                      0.14                                0.0   
4    2010-02-05                      0.13                                0.0   
...         ...                       ...                                ...   
3712 2024-04-24                      5.33                                5.4   
3713 2024-04-25                      5.33                                5.4   
3714 2024-04-26                      5.33                                5.4   
3715 2024-04-29                      5.33                                5.4   
3716 2024-04-30                      5.33                                5.4   

      Nominal Broad US Dollar Index  Inflation Rate  \
0                           93.7321        2.460000   
1                           93.4136        2.461111   
2                           93.6268        2.462222   
3                           94.1401        2.463333   
4                           94.6218        2.464444   
...                             ...             ...   
3712                       123.2398        2.350000   
3713                       123.1916        2.350000   
3714                       123.3004        2.350000   
3715                       122.9074        2.350000   
3716                       123.3446        2.350000   

      Federal Funds Target Upper Limit  Federal Funds Target Lower Limit  \
0                                 0.25                              0.00   
1                                 0.25                              0.00   
2                                 0.25                              0.00   
3                                 0.25                              0.00   
4                                 0.25                              0.00   
...                                ...                               ...   
3712                              5.50                              5.25   
3713                              5.50                              5.25   
3714                              5.50                              5.25   
3715                              5.50                              5.25   
3716                              5.50                              5.25   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                  3.58                    
1                                                  3.57                    
2                                                  3.63                    
3                                                  3.53                    
4                                                  3.49                    
...                                                 ...                    
3712                                              -0.81                    
3713                                              -0.77                    
3714                                              -0.79                    
3715                                              -0.82                    
3716                                              -0.77                    

[3717 rows x 8 columns]
In [1074]:
# Using the same process as before to determine the starting and ending dates to cut 
# from so the index fund and indicator data frames start and end at the same date

starting_date = pd.to_datetime(max(index_df['Date'].min(), indicator_df['Date'].min()))
ending_date = pd.to_datetime(min(index_df['Date'].max(), indicator_df['Date'].max()))

index_df = index_df[index_df['Date'] >= starting_date]
indicator_df = indicator_df[indicator_df['Date'] >= starting_date]

index_df = index_df[index_df['Date'] <= ending_date]
indicator_df = indicator_df[indicator_df['Date'] <= ending_date]

index_df = index_df.reset_index(drop=True)
indicator_df = indicator_df.reset_index(drop=True)

print(index_df)
print(indicator_df)
           Date     SPY     QQQ      VOO     IVV     VTI
0    2010-09-09  110.92   46.43   50.660  111.30   56.45
1    2010-09-10  111.48   46.60   50.890  111.93   56.69
2    2010-09-13  112.72   47.25   51.530  113.16   57.41
3    2010-09-14  112.65   47.45   51.519  113.07   57.40
4    2010-09-15  113.08   47.75   51.650  113.49   57.59
...         ...     ...     ...      ...     ...     ...
3428 2024-04-24  505.41  426.51  464.500  507.97  250.65
3429 2024-04-25  503.49  424.45  462.580  505.82  249.46
3430 2024-04-26  508.26  431.00  467.210  510.77  251.78
3431 2024-04-29  510.06  432.75  468.840  512.59  252.77
3432 2024-04-30  501.98  424.59  461.430  504.44  248.61

[3433 rows x 6 columns]
           Date  Daily Federal Funds Rate  Interest Rate on Reserve Balances  \
0    2010-09-09                      0.18                                0.0   
1    2010-09-10                      0.18                                0.0   
2    2010-09-13                      0.18                                0.0   
3    2010-09-14                      0.19                                0.0   
4    2010-09-15                      0.21                                0.0   
...         ...                       ...                                ...   
3554 2024-04-24                      5.33                                5.4   
3555 2024-04-25                      5.33                                5.4   
3556 2024-04-26                      5.33                                5.4   
3557 2024-04-29                      5.33                                5.4   
3558 2024-04-30                      5.33                                5.4   

      Nominal Broad US Dollar Index  Inflation Rate  \
0                           93.7033        2.198276   
1                           93.6768        2.209310   
2                           93.0767        2.242414   
3                           92.6182        2.253448   
4                           92.9313        2.264483   
...                             ...             ...   
3554                       123.2398        2.350000   
3555                       123.1916        2.350000   
3556                       123.3004        2.350000   
3557                       122.9074        2.350000   
3558                       123.3446        2.350000   

      Federal Funds Target Upper Limit  Federal Funds Target Lower Limit  \
0                                 0.25                              0.00   
1                                 0.25                              0.00   
2                                 0.25                              0.00   
3                                 0.25                              0.00   
4                                 0.25                              0.00   
...                                ...                               ...   
3554                              5.50                              5.25   
3555                              5.50                              5.25   
3556                              5.50                              5.25   
3557                              5.50                              5.25   
3558                              5.50                              5.25   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                  2.63                    
1                                                  2.67                    
2                                                  2.59                    
3                                                  2.53                    
4                                                  2.59                    
...                                                 ...                    
3554                                              -0.81                    
3555                                              -0.77                    
3556                                              -0.79                    
3557                                              -0.82                    
3558                                              -0.77                    

[3559 rows x 8 columns]
In [1075]:
# Checking for unique rows between the index fund and indicator data frames
unique_dates_df1 = set(index_df['Date']) - set(indicator_df['Date'])
unique_dates_df2 = set(indicator_df['Date']) - set(index_df['Date'])

print("Unique Dates in DF1:", unique_dates_df1)
print("Unique Dates in DF2:", unique_dates_df2)
Unique Dates in DF1: set()
Unique Dates in DF2: {Timestamp('2017-04-14 00:00:00'), Timestamp('2024-03-29 00:00:00'), Timestamp('2011-04-22 00:00:00'), Timestamp('2020-02-17 00:00:00'), Timestamp('2013-05-27 00:00:00'), Timestamp('2018-12-05 00:00:00'), Timestamp('2021-01-18 00:00:00'), Timestamp('2012-01-02 00:00:00'), Timestamp('2022-11-24 00:00:00'), Timestamp('2016-02-15 00:00:00'), Timestamp('2021-12-24 00:00:00'), Timestamp('2018-07-04 00:00:00'), Timestamp('2021-07-05 00:00:00'), Timestamp('2017-09-04 00:00:00'), Timestamp('2016-01-18 00:00:00'), Timestamp('2014-02-17 00:00:00'), Timestamp('2013-11-28 00:00:00'), Timestamp('2014-12-25 00:00:00'), Timestamp('2022-06-20 00:00:00'), Timestamp('2010-11-25 00:00:00'), Timestamp('2018-01-15 00:00:00'), Timestamp('2021-05-31 00:00:00'), Timestamp('2019-05-27 00:00:00'), Timestamp('2017-01-16 00:00:00'), Timestamp('2013-09-02 00:00:00'), Timestamp('2012-07-04 00:00:00'), Timestamp('2017-07-04 00:00:00'), Timestamp('2012-02-20 00:00:00'), Timestamp('2011-11-24 00:00:00'), Timestamp('2017-12-25 00:00:00'), Timestamp('2010-12-24 00:00:00'), Timestamp('2017-11-23 00:00:00'), Timestamp('2023-04-07 00:00:00'), Timestamp('2018-05-28 00:00:00'), Timestamp('2013-01-21 00:00:00'), Timestamp('2011-12-26 00:00:00'), Timestamp('2015-12-25 00:00:00'), Timestamp('2018-12-25 00:00:00'), Timestamp('2021-09-06 00:00:00'), Timestamp('2015-04-03 00:00:00'), Timestamp('2023-02-20 00:00:00'), Timestamp('2021-11-25 00:00:00'), Timestamp('2012-10-29 00:00:00'), Timestamp('2020-04-10 00:00:00'), Timestamp('2019-01-21 00:00:00'), Timestamp('2015-11-26 00:00:00'), Timestamp('2023-01-02 00:00:00'), Timestamp('2017-05-29 00:00:00'), Timestamp('2023-05-29 00:00:00'), Timestamp('2012-11-22 00:00:00'), Timestamp('2020-01-20 00:00:00'), Timestamp('2014-01-01 00:00:00'), Timestamp('2013-02-18 00:00:00'), Timestamp('2022-05-30 00:00:00'), Timestamp('2022-09-05 00:00:00'), Timestamp('2014-11-27 00:00:00'), Timestamp('2021-02-15 00:00:00'), Timestamp('2014-07-04 00:00:00'), Timestamp('2016-07-04 00:00:00'), Timestamp('2019-12-25 00:00:00'), Timestamp('2017-02-20 00:00:00'), Timestamp('2018-03-30 00:00:00'), Timestamp('2017-01-02 00:00:00'), Timestamp('2018-09-03 00:00:00'), Timestamp('2020-01-01 00:00:00'), Timestamp('2023-11-23 00:00:00'), Timestamp('2013-07-04 00:00:00'), Timestamp('2022-02-21 00:00:00'), Timestamp('2018-11-22 00:00:00'), Timestamp('2016-01-01 00:00:00'), Timestamp('2016-12-26 00:00:00'), Timestamp('2012-04-06 00:00:00'), Timestamp('2012-12-25 00:00:00'), Timestamp('2022-12-26 00:00:00'), Timestamp('2013-03-29 00:00:00'), Timestamp('2014-01-20 00:00:00'), Timestamp('2016-09-05 00:00:00'), Timestamp('2020-11-26 00:00:00'), Timestamp('2011-07-04 00:00:00'), Timestamp('2015-07-03 00:00:00'), Timestamp('2024-01-01 00:00:00'), Timestamp('2020-05-25 00:00:00'), Timestamp('2020-09-07 00:00:00'), Timestamp('2020-12-25 00:00:00'), Timestamp('2021-04-02 00:00:00'), Timestamp('2023-06-19 00:00:00'), Timestamp('2012-05-28 00:00:00'), Timestamp('2023-09-04 00:00:00'), Timestamp('2023-01-16 00:00:00'), Timestamp('2018-01-01 00:00:00'), Timestamp('2019-07-04 00:00:00'), Timestamp('2019-02-18 00:00:00'), Timestamp('2019-09-02 00:00:00'), Timestamp('2013-12-25 00:00:00'), Timestamp('2024-02-19 00:00:00'), Timestamp('2016-03-25 00:00:00'), Timestamp('2022-04-15 00:00:00'), Timestamp('2011-05-30 00:00:00'), Timestamp('2011-09-05 00:00:00'), Timestamp('2022-07-04 00:00:00'), Timestamp('2016-05-30 00:00:00'), Timestamp('2024-01-15 00:00:00'), Timestamp('2023-12-25 00:00:00'), Timestamp('2014-09-01 00:00:00'), Timestamp('2018-02-19 00:00:00'), Timestamp('2012-10-30 00:00:00'), Timestamp('2019-04-19 00:00:00'), Timestamp('2019-01-01 00:00:00'), Timestamp('2016-11-24 00:00:00'), Timestamp('2015-02-16 00:00:00'), Timestamp('2012-01-16 00:00:00'), Timestamp('2011-01-17 00:00:00'), Timestamp('2020-07-03 00:00:00'), Timestamp('2014-05-26 00:00:00'), Timestamp('2015-01-19 00:00:00'), Timestamp('2022-01-17 00:00:00'), Timestamp('2015-01-01 00:00:00'), Timestamp('2015-09-07 00:00:00'), Timestamp('2015-05-25 00:00:00'), Timestamp('2021-01-01 00:00:00'), Timestamp('2013-01-01 00:00:00'), Timestamp('2014-04-18 00:00:00'), Timestamp('2012-09-03 00:00:00'), Timestamp('2011-02-21 00:00:00'), Timestamp('2019-11-28 00:00:00'), Timestamp('2023-07-04 00:00:00')}
In [1076]:
# Removing unique rows from each data frame
# isin() creates a True/False mask that when applied to the data frame tells it which cells to remove
mask_index = index_df['Date'].isin(indicator_df['Date'])
index_df = index_df[mask_index].reset_index(drop=True)

mask_indicator = indicator_df['Date'].isin(index_df['Date'])
indicator_df = indicator_df[mask_indicator].reset_index(drop=True)

print(index_df)
print(indicator_df)
           Date     SPY     QQQ      VOO     IVV     VTI
0    2010-09-09  110.92   46.43   50.660  111.30   56.45
1    2010-09-10  111.48   46.60   50.890  111.93   56.69
2    2010-09-13  112.72   47.25   51.530  113.16   57.41
3    2010-09-14  112.65   47.45   51.519  113.07   57.40
4    2010-09-15  113.08   47.75   51.650  113.49   57.59
...         ...     ...     ...      ...     ...     ...
3428 2024-04-24  505.41  426.51  464.500  507.97  250.65
3429 2024-04-25  503.49  424.45  462.580  505.82  249.46
3430 2024-04-26  508.26  431.00  467.210  510.77  251.78
3431 2024-04-29  510.06  432.75  468.840  512.59  252.77
3432 2024-04-30  501.98  424.59  461.430  504.44  248.61

[3433 rows x 6 columns]
           Date  Daily Federal Funds Rate  Interest Rate on Reserve Balances  \
0    2010-09-09                      0.18                                0.0   
1    2010-09-10                      0.18                                0.0   
2    2010-09-13                      0.18                                0.0   
3    2010-09-14                      0.19                                0.0   
4    2010-09-15                      0.21                                0.0   
...         ...                       ...                                ...   
3428 2024-04-24                      5.33                                5.4   
3429 2024-04-25                      5.33                                5.4   
3430 2024-04-26                      5.33                                5.4   
3431 2024-04-29                      5.33                                5.4   
3432 2024-04-30                      5.33                                5.4   

      Nominal Broad US Dollar Index  Inflation Rate  \
0                           93.7033        2.198276   
1                           93.6768        2.209310   
2                           93.0767        2.242414   
3                           92.6182        2.253448   
4                           92.9313        2.264483   
...                             ...             ...   
3428                       123.2398        2.350000   
3429                       123.1916        2.350000   
3430                       123.3004        2.350000   
3431                       122.9074        2.350000   
3432                       123.3446        2.350000   

      Federal Funds Target Upper Limit  Federal Funds Target Lower Limit  \
0                                 0.25                              0.00   
1                                 0.25                              0.00   
2                                 0.25                              0.00   
3                                 0.25                              0.00   
4                                 0.25                              0.00   
...                                ...                               ...   
3428                              5.50                              5.25   
3429                              5.50                              5.25   
3430                              5.50                              5.25   
3431                              5.50                              5.25   
3432                              5.50                              5.25   

      Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
0                                                  2.63                    
1                                                  2.67                    
2                                                  2.59                    
3                                                  2.53                    
4                                                  2.59                    
...                                                 ...                    
3428                                              -0.81                    
3429                                              -0.77                    
3430                                              -0.79                    
3431                                              -0.82                    
3432                                              -0.77                    

[3433 rows x 8 columns]

Exploratory Analysis and Data Visualization

Exploratory analysis is the third step in the data science pipeline and focuses on determining parameters to understand the data. Exploratory analysis is useful for understanding how to design models based off relationships between data points. Data visualization is useful for giving an intuition for how the data moves over time, distance, etc. It can also be useful for visually determining relationships. For example, seeing that two curves roughly trend upwards at the same rate.

For our case we will be using exploratory analysis in order to determine which Economic Indicators will help us create the best predictive model for the value of our Index Funds.

With the plotting functions we will be using it will be significantly simpler to have the Date column as the index rather than its own column. We can do this using set_index which just move the column.

In [1077]:
# Creating data frames where the index is the date to simplify graphing
pindex_df = index_df.set_index('Date')
pindicator_df = indicator_df.set_index('Date')
print(pindex_df)
print(pindicator_df)
               SPY     QQQ      VOO     IVV     VTI
Date                                               
2010-09-09  110.92   46.43   50.660  111.30   56.45
2010-09-10  111.48   46.60   50.890  111.93   56.69
2010-09-13  112.72   47.25   51.530  113.16   57.41
2010-09-14  112.65   47.45   51.519  113.07   57.40
2010-09-15  113.08   47.75   51.650  113.49   57.59
...            ...     ...      ...     ...     ...
2024-04-24  505.41  426.51  464.500  507.97  250.65
2024-04-25  503.49  424.45  462.580  505.82  249.46
2024-04-26  508.26  431.00  467.210  510.77  251.78
2024-04-29  510.06  432.75  468.840  512.59  252.77
2024-04-30  501.98  424.59  461.430  504.44  248.61

[3433 rows x 5 columns]
            Daily Federal Funds Rate  Interest Rate on Reserve Balances  \
Date                                                                      
2010-09-09                      0.18                                0.0   
2010-09-10                      0.18                                0.0   
2010-09-13                      0.18                                0.0   
2010-09-14                      0.19                                0.0   
2010-09-15                      0.21                                0.0   
...                              ...                                ...   
2024-04-24                      5.33                                5.4   
2024-04-25                      5.33                                5.4   
2024-04-26                      5.33                                5.4   
2024-04-29                      5.33                                5.4   
2024-04-30                      5.33                                5.4   

            Nominal Broad US Dollar Index  Inflation Rate  \
Date                                                        
2010-09-09                        93.7033        2.198276   
2010-09-10                        93.6768        2.209310   
2010-09-13                        93.0767        2.242414   
2010-09-14                        92.6182        2.253448   
2010-09-15                        92.9313        2.264483   
...                                   ...             ...   
2024-04-24                       123.2398        2.350000   
2024-04-25                       123.1916        2.350000   
2024-04-26                       123.3004        2.350000   
2024-04-29                       122.9074        2.350000   
2024-04-30                       123.3446        2.350000   

            Federal Funds Target Upper Limit  \
Date                                           
2010-09-09                              0.25   
2010-09-10                              0.25   
2010-09-13                              0.25   
2010-09-14                              0.25   
2010-09-15                              0.25   
...                                      ...   
2024-04-24                              5.50   
2024-04-25                              5.50   
2024-04-26                              5.50   
2024-04-29                              5.50   
2024-04-30                              5.50   

            Federal Funds Target Lower Limit  \
Date                                           
2010-09-09                              0.00   
2010-09-10                              0.00   
2010-09-13                              0.00   
2010-09-14                              0.00   
2010-09-15                              0.00   
...                                      ...   
2024-04-24                              5.25   
2024-04-25                              5.25   
2024-04-26                              5.25   
2024-04-29                              5.25   
2024-04-30                              5.25   

            Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
Date                                                                             
2010-09-09                                               2.63                    
2010-09-10                                               2.67                    
2010-09-13                                               2.59                    
2010-09-14                                               2.53                    
2010-09-15                                               2.59                    
...                                                       ...                    
2024-04-24                                              -0.81                    
2024-04-25                                              -0.77                    
2024-04-26                                              -0.79                    
2024-04-29                                              -0.82                    
2024-04-30                                              -0.77                    

[3433 rows x 7 columns]

We will first be plotting all 5 Index Funds against the individual Economic Indicators to try and determine visual relationships. By using the matplotlib library we can call .plot on the data frames which will automatically put the data on the y-axis and the dates on the x-axis. To be able to put the data from two data frames onto a single plot we save the plot as "ax" and specify "ax=ax" in the second plot. We also set secondary_y to True so that the indicators scale equally with the index funds.

In [1078]:
# Plotting the 5 index funds with each indicator individually to be which indicators can be discarded visually
for column in pindicator_df.columns:
    ax = pindex_df.plot(title="Index Fund Value", legend=True, ylabel="Price", figsize=(20,15))
    pindicator_df[column].plot(ax=ax, legend=True, secondary_y=True)

By inspection we can determine that all but the Inflation Rate and the Yield Curve have a roughly positive linear relationship as the Indicators clearly increase over time. The Yield Curve does have a negative relationship though as we can see it trends down over time while the Index Funds all trend up. The Inflation Rate however has no noticeable relationship as it appears to to start trending down and then trends upward.

In order to determine which indicators to use for our model we will be running a linear regression. However running a regression on noisy data can lead to outliers being pronounced. To avoid this we will be using a gaussian blur, which can be thought of as a moving average, in order to remove the noise from our data. We first blur the Index Funds using the built in blurring function from scipy.

In [1079]:
# Smoothing the index fund data to reduce noise and modeling easier
sigma = 7

blur_pindex_df = pd.DataFrame(index=pindex_df.index)

for column in pindex_df.columns:
    # Creating the blurred column of data
    blur_pindex_df[f'Blurred {column}'] = gaussian_filter1d(pindex_df[column], sigma=sigma)

    # Plotting the blurred column vs the original
    # By adjusting sigma you can fine tune until the noise is removed but the general shape of the curve is the same
    plt.figure(figsize=(20, 15))
    ax = pindex_df[column].plot(title="Index Fund Value", legend=True, ylabel="Price")
    blur_pindex_df[f'Blurred {column}'].plot(ax=ax, legend=True, secondary_y=True)
        
print(blur_pindex_df)
            Blurred SPY  Blurred QQQ  Blurred VOO  Blurred IVV  Blurred VTI
Date                                                                       
2010-09-09   112.828632    47.817171    51.627469   113.400644    57.561600
2010-09-10   112.851878    47.838002    51.638719   113.424914    57.575681
2010-09-13   112.897843    47.878857    51.660881   113.472724    57.603447
2010-09-14   112.965472    47.938201    51.693285   113.542634    57.644114
2010-09-15   113.053308    48.013846    51.735016   113.632675    57.696603
...                 ...          ...          ...          ...          ...
2024-04-24   505.459308   428.024694   464.543335   507.929580   250.431317
2024-04-25   505.203208   427.670252   464.308177   507.671895   250.299455
2024-04-26   505.019436   427.408407   464.139583   507.487031   250.205106
2024-04-29   504.901279   427.236115   464.031263   507.368193   250.144587
2024-04-30   504.843623   427.150769   463.978440   507.310197   250.115111

[3433 rows x 5 columns]
In [1080]:
# blur_pindicator_df = pd.DataFrame(index=pindicator_df.index)

# for column in pindicator_df.columns:
#     if column != 'Inflation Rate':
#         blur_pindicator_df[f'Blurred {column}'] = gaussian_filter1d(pindicator_df[column], sigma=sigma)

#         plt.figure(figsize=(20, 15))
#         ax = pindicator_df[column].plot(title="Index Fund Value", legend=True, ylabel="Price")
#         blur_pindicator_df[f'Blurred {column}'].plot(ax=ax, legend=True, secondary_y=True)
        
# print(blur_pindicator_df)

Next we blur the Yield Curve and US Dollar Value data since these are the only indicators which are not step functions and have noise.

In [1081]:
# Smoothing the Yield Curve and Dollar Value data to reduce noise
blur_pindicator_df = pindicator_df.drop(columns=['Inflation Rate'])
blur_pindicator_df.index = pindicator_df.index

blur_pindicator_df['Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity'] = gaussian_filter1d(pindicator_df['Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity'], sigma=sigma)
blur_pindicator_df['Nominal Broad US Dollar Index'] = gaussian_filter1d(pindicator_df['Nominal Broad US Dollar Index'], sigma=sigma)

Lastly before creating our regressions we want to average out our index fund data since they follow similar trends. This will help simplify the regression. Before we compute the average however, we normalize all the Index Fund data between 0 and 1 in order to ensure higher value index funds do not overwhelm lower valued funds.

In [1082]:
# Normalizing the index fund data so higher valued funds do not swamp the mean
norm_blur_pindex_df = (blur_pindex_df - blur_pindex_df.min()) / (blur_pindex_df.max() - blur_pindex_df.min())

print(norm_blur_pindex_df)
            Blurred SPY  Blurred QQQ  Blurred VOO  Blurred IVV  Blurred VTI
Date                                                                       
2010-09-09     0.000000     0.000000     0.000000     0.000000     0.000000
2010-09-10     0.000057     0.000053     0.000027     0.000060     0.000071
2010-09-13     0.000171     0.000157     0.000079     0.000177     0.000210
2010-09-14     0.000338     0.000307     0.000155     0.000349     0.000414
2010-09-15     0.000555     0.000500     0.000253     0.000570     0.000677
...                 ...          ...          ...          ...          ...
2024-04-24     0.970360     0.965979     0.973182     0.969736     0.967235
2024-04-25     0.969727     0.965078     0.972628     0.969102     0.966574
2024-04-26     0.969273     0.964413     0.972231     0.968648     0.966100
2024-04-29     0.968981     0.963975     0.971976     0.968356     0.965797
2024-04-30     0.968838     0.963758     0.971851     0.968213     0.965649

[3433 rows x 5 columns]
In [1083]:
# Pooling the index fund data by taking a mean of the rows
row_means = norm_blur_pindex_df.mean(axis=1)
mean_pindex_df = pd.DataFrame(row_means, columns=['Index Fund Means'])
mean_pindex_df.index = norm_blur_pindex_df.index
print(mean_pindex_df)
            Index Fund Means
Date                        
2010-09-09          0.000000
2010-09-10          0.000053
2010-09-13          0.000159
2010-09-14          0.000313
2010-09-15          0.000511
...                      ...
2024-04-24          0.969298
2024-04-25          0.968622
2024-04-26          0.968133
2024-04-29          0.967817
2024-04-30          0.967662

[3433 rows x 1 columns]

Now we run our regression. A linear regression calculates an optimized y-intercept and slope in order to approximate a data set using a linear curve. This allows to do things. One is we know have a simple model to make predictions about the future. Two is we can get an idea of how related two data sets are using the $R^2$ value. The $R^2$ value will be between 0 and 1 and the closer 1 it is the more related we can assume those two factors are. In our case we will be creating 1 regression per Economic Indicator and calculating the associated $R^2$ value to choose which Indicators to use in our machine learning model.

Since the regressions take the form y = mx+b we have to calculate two values, m and b. Typically these are called $\beta_1$ and $\beta_0$ rather than m and b respectively.

To calculate these two values we use the formulas below.

$$ \beta_1 = \frac{\sum_{i=1}^{n} (x_i - \overline{x})(y_i - \overline{y})}{\sum_{i=1}^{n} (x_i - \overline{x})^2} $$$$ \beta_0 = \overline{y} - \beta_1 \overline{x} $$

To calculate the $R^2$ value we use

$$ R^2 = 1 - \frac{\sum_{i=1}^{n} (y_i - \hat{y}_i)^2}{\sum_{i=1}^{n} (y_i - \overline{y})^2} $$

To simplify our code we will be using the built in LinearRegression model from scipy to compute these values.

In [1084]:
# Creating linear regressions for each indicator against the pooled index fund data to determine
# the best predictors for the machine learning model
model = LinearRegression()

fig, axes = plt.subplots(nrows=3, ncols=2, figsize=(12, 12))
axes = axes.flatten()

for i, column in enumerate(blur_pindicator_df.columns):
    # Prepare x and y data to plot
    X = blur_pindicator_df[[column]]  # Predictor
    y = mean_pindex_df['Index Fund Means']  # Response

    # Fit linear regression model
    model.fit(X, y)

    # Make predicted linear curve based off model
    y_pred = model.predict(X)
    
    # Calculate R^2 value to get an idea of accuracy
    r_squared = model.score(X, y)

    # Plotting data and a linear regression line
    ax = axes[i]
    ax.scatter(X, y, color='blue', label='Data')
    ax.plot(X, y_pred, color='red', label=f'Linear Reg Line, $R^2={r_squared:.2f}$')  # Include R^2 in the legend
    ax.set_title(f'Linear Regression of Index Fund Means vs. {column}')
    ax.set_xlabel(column)
    ax.set_ylabel('Normalized Index Fund Means')
    ax.legend()

plt.tight_layout()
plt.show()

Modeling

Modeling is the idea of making predictions about the future or missing information from the past based off information we have right now. This can be done by drawing relationships between various data sets like what we did with the regression or by creating a model that we can train on existing data.

Looking at our 6 regression models we see the two best $R^2$ values are the Yield Curve and US Dollar Value and thus we will be using the two Indicators for our machine learning model

Before creating our model we will create training and testing data. Training data is data used to improve the quality of the model by giving it inputs and comparing the predictions the model makes with known outputs and then adjusting the model based on the inaccuracy of the model. Testing data is existing data we use to "test" the accuracy of our model. The distinction between the two types of data is extremely important as the model is given the correct answers for the training data while it has to figure out the right answer to the test data.

In [1085]:
# Creating a master_df to make training and testing data sampling easier
master_df = pd.merge(index_df, indicator_df)
master_df = master_df.set_index('Date')
print(master_df)
               SPY     QQQ      VOO     IVV     VTI  Daily Federal Funds Rate  \
Date                                                                            
2010-09-09  110.92   46.43   50.660  111.30   56.45                      0.18   
2010-09-10  111.48   46.60   50.890  111.93   56.69                      0.18   
2010-09-13  112.72   47.25   51.530  113.16   57.41                      0.18   
2010-09-14  112.65   47.45   51.519  113.07   57.40                      0.19   
2010-09-15  113.08   47.75   51.650  113.49   57.59                      0.21   
...            ...     ...      ...     ...     ...                       ...   
2024-04-24  505.41  426.51  464.500  507.97  250.65                      5.33   
2024-04-25  503.49  424.45  462.580  505.82  249.46                      5.33   
2024-04-26  508.26  431.00  467.210  510.77  251.78                      5.33   
2024-04-29  510.06  432.75  468.840  512.59  252.77                      5.33   
2024-04-30  501.98  424.59  461.430  504.44  248.61                      5.33   

            Interest Rate on Reserve Balances  Nominal Broad US Dollar Index  \
Date                                                                           
2010-09-09                                0.0                        93.7033   
2010-09-10                                0.0                        93.6768   
2010-09-13                                0.0                        93.0767   
2010-09-14                                0.0                        92.6182   
2010-09-15                                0.0                        92.9313   
...                                       ...                            ...   
2024-04-24                                5.4                       123.2398   
2024-04-25                                5.4                       123.1916   
2024-04-26                                5.4                       123.3004   
2024-04-29                                5.4                       122.9074   
2024-04-30                                5.4                       123.3446   

            Inflation Rate  Federal Funds Target Upper Limit  \
Date                                                           
2010-09-09        2.198276                              0.25   
2010-09-10        2.209310                              0.25   
2010-09-13        2.242414                              0.25   
2010-09-14        2.253448                              0.25   
2010-09-15        2.264483                              0.25   
...                    ...                               ...   
2024-04-24        2.350000                              5.50   
2024-04-25        2.350000                              5.50   
2024-04-26        2.350000                              5.50   
2024-04-29        2.350000                              5.50   
2024-04-30        2.350000                              5.50   

            Federal Funds Target Lower Limit  \
Date                                           
2010-09-09                              0.00   
2010-09-10                              0.00   
2010-09-13                              0.00   
2010-09-14                              0.00   
2010-09-15                              0.00   
...                                      ...   
2024-04-24                              5.25   
2024-04-25                              5.25   
2024-04-26                              5.25   
2024-04-29                              5.25   
2024-04-30                              5.25   

            Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
Date                                                                             
2010-09-09                                               2.63                    
2010-09-10                                               2.67                    
2010-09-13                                               2.59                    
2010-09-14                                               2.53                    
2010-09-15                                               2.59                    
...                                                       ...                    
2024-04-24                                              -0.81                    
2024-04-25                                              -0.77                    
2024-04-26                                              -0.79                    
2024-04-29                                              -0.82                    
2024-04-30                                              -0.77                    

[3433 rows x 12 columns]
In [1086]:
# Creating training and testing data for the model
train_df = master_df.sample(n=len(master_df)//2)
test_df = master_df.drop(train_df.index)

print(train_df.head(30))
               SPY     QQQ     VOO     IVV     VTI  Daily Federal Funds Rate  \
Date                                                                           
2021-02-24  391.77  324.13  360.16  393.21  206.27                      0.07   
2014-12-01  205.76  104.81  188.73  207.18  105.70                      0.13   
2010-12-03  122.89   53.87   56.17  123.28   63.34                      0.18   
2013-12-16  179.22   85.32  164.22  180.17   93.11                      0.09   
2022-12-07  393.16  280.53  361.33  394.85  196.66                      3.83   
2012-02-27  137.16   64.05   62.71  137.67   70.67                      0.10   
2015-08-11  208.66  110.14  191.32  209.92  107.79                      0.15   
2013-09-17  171.07   78.37   78.36  171.99   88.90                      0.08   
2019-07-08  296.82  189.71  272.60  298.55  151.73                      2.41   
2022-08-05  413.47  321.75  379.98  415.59  207.68                      2.33   
2022-12-23  382.91  267.36  351.87  384.59  191.42                      4.33   
2017-04-11  235.06  131.45  215.79  236.55  120.99                      0.91   
2013-09-05  165.96   76.84   75.90  166.76   86.06                      0.08   
2015-09-29  188.08   99.47  172.40  189.04   96.92                      0.13   
2023-01-20  395.88  282.68  363.71  397.70  198.76                      4.33   
2016-03-21  204.67  107.79  187.73  206.87  104.23                      0.37   
2015-08-28  199.24  105.62  182.72  200.48  102.98                      0.14   
2016-10-21  213.98  118.15  196.47  215.16  109.80                      0.41   
2020-09-03  345.39  287.41  317.36  346.82  174.94                      0.09   
2019-11-07  308.18  200.43  283.11  309.98  156.72                      1.55   
2020-04-02  251.83  186.01  231.44  252.59  125.52                      0.05   
2021-08-17  444.04  365.73  408.23  445.95  228.53                      0.10   
2016-11-22  220.58  118.90  202.51  221.76  113.95                      0.41   
2015-03-16  208.58  106.70  191.38  210.14  108.21                      0.12   
2016-10-06  215.78  118.73  198.19  217.10  110.96                      0.40   
2012-09-21  145.87   70.15   67.11  147.17   75.04                      0.15   
2011-04-07  133.32   57.22   61.00  133.78   69.12                      0.10   
2018-03-06  272.88  168.54  250.83  274.95  140.31                      1.42   
2016-11-15  218.28  116.22  200.41  219.52  112.57                      0.41   
2013-05-17  166.94   74.30   76.44  167.80   86.08                      0.10   

            Interest Rate on Reserve Balances  Nominal Broad US Dollar Index  \
Date                                                                           
2021-02-24                               0.00                       111.7339   
2014-12-01                               0.00                        99.8964   
2010-12-03                               0.00                        90.8788   
2013-12-16                               0.00                        93.2175   
2022-12-07                               3.90                       122.7716   
2012-02-27                               0.00                        89.9635   
2015-08-11                               0.00                       109.9464   
2013-09-17                               0.00                        93.2231   
2019-07-08                               2.25                       115.0263   
2022-08-05                               2.40                       122.3300   
2022-12-23                               4.40                       121.9843   
2017-04-11                               0.75                       115.0090   
2013-09-05                               0.00                        94.8891   
2015-09-29                               0.00                       111.5219   
2023-01-20                               4.40                       119.3588   
2016-03-21                               0.25                       110.7370   
2015-08-28                               0.00                       110.6714   
2016-10-21                               0.25                       113.9015   
2020-09-03                               0.00                       116.0799   
2019-11-07                               1.50                       116.1179   
2020-04-02                               0.00                       123.5994   
2021-08-17                               0.15                       113.6263   
2016-11-22                               0.25                       117.4508   
2015-03-16                               0.00                       108.6422   
2016-10-06                               0.25                       113.0066   
2012-09-21                               0.00                        90.5342   
2011-04-07                               0.00                        87.5320   
2018-03-06                               1.25                       107.7972   
2016-11-15                               0.25                       116.7724   
2013-05-17                               0.00                        93.1617   

            Inflation Rate  Federal Funds Target Upper Limit  \
Date                                                           
2021-02-24        2.216667                              0.25   
2014-12-01        1.940000                              0.25   
2010-12-03        2.531333                              0.25   
2013-12-16        2.305000                              0.25   
2022-12-07        2.256000                              4.00   
2012-02-27        2.408571                              0.25   
2015-08-11        1.756667                              0.25   
2013-09-17        2.301034                              0.25   
2019-07-08        1.760333                              2.50   
2022-08-05        2.287333                              2.50   
2022-12-23        2.245333                              4.50   
2017-04-11        2.009310                              1.00   
2013-09-05        2.292759                              0.25   
2015-09-29        1.671379                              0.25   
2023-01-20        2.271667                              4.50   
2016-03-21        1.736667                              0.50   
2015-08-28        1.717000                              0.25   
2016-10-21        1.936667                              0.50   
2020-09-03        1.766897                              0.25   
2019-11-07        1.748276                              1.75   
2020-04-02        1.392414                              0.25   
2021-08-17        2.235333                              0.25   
2016-11-22        2.050690                              0.50   
2015-03-16        1.920000                              0.25   
2016-10-06        1.841667                              0.50   
2012-09-21        2.474483                              0.25   
2011-04-07        2.670690                              0.25   
2018-03-06        2.106667                              1.50   
2016-11-15        2.033793                              0.50   
2013-05-17        2.283333                              0.25   

            Federal Funds Target Lower Limit  \
Date                                           
2021-02-24                              0.00   
2014-12-01                              0.00   
2010-12-03                              0.00   
2013-12-16                              0.00   
2022-12-07                              3.75   
2012-02-27                              0.00   
2015-08-11                              0.00   
2013-09-17                              0.00   
2019-07-08                              2.25   
2022-08-05                              2.25   
2022-12-23                              4.25   
2017-04-11                              0.75   
2013-09-05                              0.00   
2015-09-29                              0.00   
2023-01-20                              4.25   
2016-03-21                              0.25   
2015-08-28                              0.00   
2016-10-21                              0.25   
2020-09-03                              0.00   
2019-11-07                              1.50   
2020-04-02                              0.00   
2021-08-17                              0.00   
2016-11-22                              0.25   
2015-03-16                              0.00   
2016-10-06                              0.25   
2012-09-21                              0.00   
2011-04-07                              0.00   
2018-03-06                              1.25   
2016-11-15                              0.25   
2013-05-17                              0.00   

            Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity  
Date                                                                             
2021-02-24                                               1.35                    
2014-12-01                                               2.19                    
2010-12-03                                               2.89                    
2013-12-16                                               2.82                    
2022-12-07                                              -0.87                    
2012-02-27                                               1.80                    
2015-08-11                                               2.05                    
2013-09-17                                               2.85                    
2019-07-08                                              -0.21                    
2022-08-05                                               0.25                    
2022-12-23                                              -0.59                    
2017-04-11                                               1.50                    
2013-09-05                                               2.96                    
2015-09-29                                               2.04                    
2023-01-20                                              -1.24                    
2016-03-21                                               1.61                    
2015-08-28                                               2.13                    
2016-10-21                                               1.40                    
2020-09-03                                               0.52                    
2019-11-07                                               0.36                    
2020-04-02                                               0.54                    
2021-08-17                                               1.19                    
2016-11-22                                               1.82                    
2015-03-16                                               2.05                    
2016-10-06                                               1.42                    
2012-09-21                                               1.66                    
2011-04-07                                               3.54                    
2018-03-06                                               1.20                    
2016-11-15                                               1.72                    
2013-05-17                                               1.91                    
In [1087]:
# Creating the quadratic training data
train_df['Daily Federal Funds Rate^2'] = train_df['Daily Federal Funds Rate'] ** 2
train_df['Interest Rate on Reserve Balances^2'] = train_df['Interest Rate on Reserve Balances'] ** 2
train_df['Nominal Broad US Dollar Index^2'] = train_df['Nominal Broad US Dollar Index'] ** 2
train_df['Inflation Rate^2'] = train_df['Inflation Rate'] ** 2
train_df['Federal Funds Target Upper Limit^2'] = train_df['Federal Funds Target Upper Limit'] ** 2
train_df['Federal Funds Target Lower Limit^2'] = train_df['Federal Funds Target Lower Limit'] ** 2
train_df['Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity^2'] = train_df['Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity'] ** 2
In [1088]:
# Creating the quadratic testing data
test_df['Daily Federal Funds Rate^2'] = test_df['Daily Federal Funds Rate'] ** 2
test_df['Interest Rate on Reserve Balances^2'] = test_df['Interest Rate on Reserve Balances'] ** 2
test_df['Nominal Broad US Dollar Index^2'] = test_df['Nominal Broad US Dollar Index'] ** 2
test_df['Inflation Rate^2'] = train_df['Inflation Rate'] ** 2
test_df['Federal Funds Target Upper Limit^2'] = test_df['Federal Funds Target Upper Limit'] ** 2
test_df['Federal Funds Target Lower Limit^2'] = test_df['Federal Funds Target Lower Limit'] ** 2
test_df['Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity^2'] = test_df['Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity'] ** 2

We previously mentioned that machine learning models are given data and told how incorrect they are and then make adjustments based on how incorrect they are. This is done primarily through two different concepts in data science. The first is loss which is a way of quantifying how incorrect the model's guesses are while training. The second is gradient descent. Gradient descent how we actually make the adjustments to the model. The actual math gets quite complicated so its usually better to think of it abstractly in the form of a bunch of hills. The height of these hills is how much loss or how incorrect the model currently is. The higher up you are the worse your model is, the lower the better it is. Gradient descent is how we make sure we move down these mountains by choosing the direction down the hill that is steepest and then taking a step. The number of "steps" we take down this mountain we call the number of epochs. How big each step is is determined by the learning rate.

For our model we use a slightly more advanced version of gradient descent called Ridge Regression. This special version is useful for something called overfitting. Overfitting is when a model is really really really good at correctly predicting the training data but has become to familiar with the unique qualities and nuances of that data set that it is extremely inaccurate with the test data and might as well be randomized. The L2 parameter is what we use as a penalty to the loss function to prevent overfitting.

By running our model we get a set of parameters, similar to $\beta_0$ and $\beta_1$ in the linear regression, which are what we use to draw predictions for the future.

In [1089]:
# Ridge Regression Gradient descent algorithm
def grad_descent_ridge(X,y,T,alpha,L2):
    m, n = X.shape
    theta = np.zeros((n,1))
    f = np.zeros(T)
    div = 1 / (m)
    for i in range(T):
        pred = X.dot(theta)
        error = pred - y
        SSE = np.linalg.norm(error) ** 2
        f[i] = div*(SSE + ((L2 / 2) * np.sum(np.square(theta[1:]))))
        g = np.transpose(X).dot(error)
        theta -= alpha*g
    return(theta,f)
In [1090]:
# Selecting training indicators and the index fund to train against
X2 = np.c_[np.ones((train_df.shape[0], 1)), train_df["Nominal Broad US Dollar Index"], train_df["Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity"], train_df["Nominal Broad US Dollar Index^2"], train_df["Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity^2"]]
y = np.c_[train_df["SPY"]]

# Specifying training parameters
epochs = 10
learning_rate = 0.000000000001
L2 = 1000000000
In [1091]:
# Running Gradient Descent to get model parameters
theta, f = grad_descent_ridge(X2, y, epochs, learning_rate, L2)
print(theta, f)
[[1.66990040e-06]
 [1.90539407e-04]
 [9.97288687e-07]
 [2.18556083e-02]
 [3.40785137e-06]] [82815.38943001 49281.23861977 30268.33401137 19491.24539028
 13384.48976695  9925.66886709  7967.76939845  6860.34968601
  6234.63083878  5881.58005911]
In [1092]:
# Plotting error as the model trains to get a visual of increasing accuracy
# Allows for tuning number of epochs by seeing diminishing returns
plt.plot(f)
plt.xlabel("Epochs")
plt.ylabel("MSE")
plt.title("MSE vs Training Epochs")
Out[1092]:
Text(0.5, 1.0, 'MSE vs Training Epochs')
In [1093]:
# Selecting testing indicators and the index fund to test against 
test_data = np.c_[np.ones((test_df.shape[0], 1)), test_df["Nominal Broad US Dollar Index"], test_df["Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity"], test_df["Nominal Broad US Dollar Index^2"], test_df["Treasury Constant Maturity Minus 3-Month Treasury Constant Maturity^2"]]
test_result = test_data.dot(theta)
print(test_result)
[[187.49794425]
 [188.76771857]
 [188.81037545]
 ...
 [332.83703661]
 [331.09591346]
 [330.17924587]]

To actually determine how accurate the model is we run the test data through the model and calculate the $R^2$ value between the predicted and actual values. By doing this we get an $R^2$ of roughly .5. While this may seem bad at first as it's no better than a coin flip you have to take statistical values into context. Here we do not have just two potential predictions we can make but 100s. If our model were no better than randomness we'd be flipping a 300+ sided coin with a random probability of .003 meaning our model is over 150 times better.

In [1094]:
actual_spy = test_df['SPY'].values.reshape(-1, 1)

# Calculate R-squared
r_squared = r2_score(actual_spy, test_result)
print("R-squared:", r_squared)
R-squared: 0.5427842136385801
In [ ]: